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