fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int i,j;
  8.  
  9. for(j = 1; j <= 9 ; j ++ ) {
  10. for(i = 1; i <= 9 ; i ++ ) {
  11.  
  12. printf("%2d", j*i ) ;
  13.  
  14. }
  15. printf("\n");
  16. }
  17. }
  18.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
 1 2 3 4 5 6 7 8 9
 2 4 6 81012141618
 3 6 9121518212427
 4 812162024283236
 51015202530354045
 61218243036424854
 71421283542495663
 81624324048566472
 91827364554637281