fork download
  1. /* Helloプログラム 教科書p17のサンプル */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. printf("%d×%dは%dです。" ,6,2,12 );
  8. printf("今日は%d年%d月%d日です" , 2025,4,28 );
  9. }
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
6×2は12です。今日は2025年4月28日です