dsdeep

Pseudo Time

Mar 17th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a,b,c;
  5.     char d[5];
  6.     scanf("%d %d %d %c",&a,&b,&c,d);
  7.     if(d=="PM")
  8. {
  9.     a=a+12;
  10.     printf("%d:%d:%d\n",a,b,c);
  11. }
  12. else
  13.     printf("%d:%d:%d\n",a,b,c);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment