fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int count ;
  8.  
  9. for ( count = 1 ; count <= 100 ; count ++ ) {
  10.  
  11. if ( (count % 3) == 0 ) {
  12. printf("@ ");
  13.  
  14. } else {
  15. printf("%d ", count);
  16.  
  17. }
  18.  
  19. }
  20.  
  21. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
1 2 @ 4 5 @ 7 8 @ 10 11 @ 13 14 @ 16 17 @ 19 20 @ 22 23 @ 25 26 @ 28 29 @ 31 32 @ 34 35 @ 37 38 @ 40 41 @ 43 44 @ 46 47 @ 49 50 @ 52 53 @ 55 56 @ 58 59 @ 61 62 @ 64 65 @ 67 68 @ 70 71 @ 73 74 @ 76 77 @ 79 80 @ 82 83 @ 85 86 @ 88 89 @ 91 92 @ 94 95 @ 97 98 @ 100