Already have an account? Get multiple benefits of using own account!
Login in your account..!
Remember me
Don't have an account? Create your account in less than a minutes,
Forgot password? how can I recover my password now!
Enter right registered email to receive password!
Aim: To implement a program to convert time in 24 hour format to 12 hour format.
Code:
#include
class time24
{
public:
int hhhh;
void displaytime24()
cout<<"\nTime(24):"< } void gettime24() { cout<<"\nEnter time in 24 hour format:"; cin>>hhhh; } }; class time12 { public: int hh,mm; char ap[3]; time12(time24 t2) { if((t2.hhhh/100)>=12) { if(((t2.hhhh/100)%12)==0) { hh=12; } else { hh=(t2.hhhh-1200)/100; } strcpy(ap,"pm"); } else { hh=(t2.hhhh/100); strcpy(ap,"am"); } mm=(t2.hhhh%100); } void displaytime12() { cout<<"\nTime(12):"; if(hh<10) cout<<"0"; cout< if(mm<10) cout<<"0"; cout< } }; void main() { clrscr(); time24 t1; t1.gettime24(); time12 t2=t1; t1.displaytime24(); t2.displaytime12(); getch(); } Output: Enter time in 24 hour format:1830 Time(24):1830 hours Time(12):06:30 pm
}
void gettime24()
cout<<"\nEnter time in 24 hour format:";
cin>>hhhh;
};
class time12
int hh,mm;
char ap[3];
time12(time24 t2)
if((t2.hhhh/100)>=12)
if(((t2.hhhh/100)%12)==0)
hh=12;
else
hh=(t2.hhhh-1200)/100;
strcpy(ap,"pm");
hh=(t2.hhhh/100);
strcpy(ap,"am");
mm=(t2.hhhh%100);
void displaytime12()
cout<<"\nTime(12):";
if(hh<10)
cout<<"0";
cout< if(mm<10) cout<<"0"; cout< } }; void main() { clrscr(); time24 t1; t1.gettime24(); time12 t2=t1; t1.displaytime24(); t2.displaytime12(); getch(); } Output: Enter time in 24 hour format:1830 Time(24):1830 hours Time(12):06:30 pm
if(mm<10)
cout< } }; void main() { clrscr(); time24 t1; t1.gettime24(); time12 t2=t1; t1.displaytime24(); t2.displaytime12(); getch(); } Output: Enter time in 24 hour format:1830 Time(24):1830 hours Time(12):06:30 pm
void main()
clrscr();
time24 t1;
t1.gettime24();
time12 t2=t1;
t1.displaytime24();
t2.displaytime12();
getch();
Output:
Enter time in 24 hour format:1830
Time(24):1830 hours
Time(12):06:30 pm
board colouring program
Description A long time ago in a galaxy far, far away, the country Mafghanistan had n cities and m old roads, where each road connected a pair of cities. Due to the treacherous mo
#questio#A Padovan string P(n) for a natural number n is defined as: P(0) = ‘X’ P(1) = ‘Y’ P(2) = ‘Z’ P(n) = P(n-2) + P(n-3), n>2 where + denotes string concate
Write a program to find the area under the curve y = f(x) between x = a and x = b, integrate y = f(x) between the limits of a and b. The area under a curve between two points can b
1. Create text a file with the name "myemail" that has a single line in it, consisting of your email address. Something like "[email protected]" (or your hotmail or gm
Write a program that displays the following temperature conversion chart on the screen as follows below. Hint: c = 5.0/9.0 * (f - 2) C = degrees in Celsius F = degree in F
#question.to determine the area of a triangle,rectangle and trapezium
The Special Pointer 'this' When various instances of a class come into existence, it naturally follows that each instance has its own copy of member variables. If this were not
Described multiple inheritance(virtual inheritance)? And explain its advantages and disadvantages? A: It is the procedure in which a child can be derived from more than one pare
Write the statements which are used to connect PHP with MySQL? Statements which can be used to connect PHP with MySQL is: $conn = mysql_connect('localhost'); echo $co
Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!
whatsapp: +1-415-670-9521
Phone: +1-415-670-9521
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd