c语言输出乘法口诀表

#include
#include
int main() {
	for (int i = 1;i <= 9;i++) {
		for (int j = 1;j <=i;j++) {
			printf("%2d*%d=%d",j,i,i*j);
		}
		printf("\n");
	}
	system("pause");
	return 0;
}



你可能感兴趣的:(c语言输出乘法口诀表)