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