meltable99 multiplication table

#include <stdio.h>
int main () {
int I, J, n-;
for (I =. 1; I <=. 9; I ++) {
// for loop will be commented below, the lower left triangular outputs
for (n- =. 1; n-<=. 9-I; n-++)
the printf ( "");

for (J =. 1; J <= I; J ++)
the printf ( "% D *% D =% 2D", I, J, I * J);

the printf ( "\ n-");
}
return 0;
}

Guess you like

Origin www.cnblogs.com/ttnrt/p/10953782.html