fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int i,j;
  5. for(i=1;i<=9;i++)
  6. {
  7. for(j=2;j<=3;j++)
  8. {
  9. printf("%d*%d=%d\t",j,i,i*j);
  10. }
  11. printf("\n");
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
2*1=2	3*1=3	
2*2=4	3*2=6	
2*3=6	3*3=9	
2*4=8	3*4=12	
2*5=10	3*5=15	
2*6=12	3*6=18	
2*7=14	3*7=21	
2*8=16	3*8=24	
2*9=18	3*9=27