fork(1) 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. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
12@45@78@1011@1314@1617@1920@2223@2526@2829@3132@3435@3738@4041@4344@4647@4950@5253@5556@5859@6162@6465@6768@7071@7374@7677@7980@8283@8586@8889@9192@9495@9798@100