fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. printf( "今日の気温は %d 度です\n " , 10+10 );
  8. printf("計算結果は%d です\n",1+2+3+4+5);
  9. printf("今日は%d年%d月%d日です\n",2024,5,9);
  10. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
今日の気温は 20 度です
 計算結果は15 です
今日は2024年5月9日です