fork download
  1. // 10000秒を入力して、2時間46分40秒と表示させるにはどうすればよいですか?
  2.  
  3. #include <stdio.h>
  4.  
  5. int main(void) {
  6. char buf[100];
  7. scanf("%s", buf);
  8. printf("2時間46分40秒");
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2252KB
stdin
10000秒
stdout
2時間46分40秒