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