954,498 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

C++ program to convert military time to standard time

hi guys

Can anyone write a C++ program for me which convert military time to standard time without using return function. write a simple program which start from

#include
#include
void main()
{
.
.
.
.
.
.
.
getch();
}

sameerge
Newbie Poster
1 post since Jan 2012
Reputation Points: 10
Solved Threads: 0
 

Try starting with this

#include <iostream>
using namespace std;

void MyFunction()
{
	//does something
}


int main()
{
	MyFunction();

	return 0;
}
sfuo
Practically a Master Poster
656 posts since Jul 2009
Reputation Points: 164
Solved Threads: 99
 

Come on, think. :) This is very easy. How do we convert from 24h notation to 12? When someone says it's 23:00 you know, it is 11:00 pm, or 22:00 is 10:00 pm 21:00 is 9, 20:00 is 8.

24 -> 0 23 -> 11 22 -> 10 21 -> 9 20 -> 8 19 -> 7 18 -> 6

Look at the difference between 23 and 11, 22 and 10 and so on. It's always 12. You only need to subtract 12. It is slightly more elegant to do it with the modulo operator.

22 % 12 = 10 21 % 12 = 9 24 % 12 = 0;

LRRR
Junior Poster in Training
55 posts since Dec 2011
Reputation Points: 22
Solved Threads: 15
 

Will your input be a time_t or some other time structure?
Will it be a string that is input by the user?

thines01
Postaholic
Team Colleague
2,424 posts since Oct 2009
Reputation Points: 445
Solved Threads: 402
 

OP clearly has no intention of doing any work, which means this violates our homework rule. Thread closed.

Narue
Bad Cop
Administrator
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: