fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. printf("3\n");
  8. printf("%d\n",3+3);
  9. printf("%d\n",1848*95);
  10. printf("今日の気温は%d度です。",18);
  11. printf("今日の血圧は%d回/分でした\n",89);
  12. printf("%f\n",473.222-484.332);
  13. printf("%d-%dは%dです",3,2,3-2);
  14. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
3
6
175560
今日の気温は18度です。今日の血圧は89回/分でした
-11.110000
3-2は1です