fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int val;
  8.  
  9. val = 2;
  10.  
  11. if (val % 2== 0) {
  12. printf("偶数");
  13. }
  14. else {
  15. printf("奇数");
  16. }
  17.  
  18. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
偶数