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