fork download
  1. /* Helloプログラム 教科書p17のサンプル
  2. 複数行になってもok
  3.  プログラムの説明を書いておきます
  4.  Helloプログラム*/
  5.  
  6. #include <stdio.h>
  7.  
  8. main()
  9. {
  10. int year;
  11. int month;
  12. int day;
  13.  
  14. year = 2025;
  15. month = 5;
  16. day = 12;
  17.  
  18. printf("%d×%dは%dです。" ,6,2,12 );
  19. printf("今日は%d年%d月%d日です。\n" , year,month,day );
  20. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
6×2は12です。今日は2025年5月12日です。