看到有人都換成分,加150再換回來
還有一堆if else if
為什麼不用直覺一點的解法
int n,m;
scanf("%d %d",&n,&m);
n+=2;
m+=30;
if(m>59){
m%=60;
n++;
}
n%=24;
printf("%02d:%02d",n,m);
再壓了一下
#include <stdio.h>
void main(){
short int n,m;
scanf("%hd %hd",&n,&m);
printf("%02hd:%02hd",(n+2+(m+30)/60)%24,(m+30)%60);
}