fork download
  1. /* Helloグロプラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int year;
  8. int month;
  9. int day;
  10.  
  11. year = 2025;
  12. month = 5;
  13. day = 12;
  14.  
  15. printf("今日の気温は %d 度です。\n" , 25 );
  16. printf("今日は %d 年 %d 月 %d 日です。 \n" , year, month ,day );
  17. }
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
今日の気温は 25 度です。
今日は 2025 年 5 月 12 日です。