Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Nhap vao so giay tinh so gio:phut:giay
- // Khai bao ham thu vien neu co
- #include<stdio.h>
- #include<conio.h>
- void main()
- {
- long t;
- scanf("%ld",&t);
- long h,m,s;
- // tinh gio
- h=(t/3600)%24;
- // tinh phut
- m=(t%3600)/60;
- // tinh giay
- s=(t%3600)%60;
- if(h==0||h<12)
- {
- printf("%d : %d : %d AM",h,m,s);
- }
- else
- {
- if((h-12)==12)
- {
- printf(" %d : %d : %d AM",h-24,m,s);
- }
- else
- {
- printf(" %d : %d : %d PM",h-12,m,s);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement