用C语言的for循环,打印九九乘法表
摘要:用C语言的for循环,打印九九乘法表 C语言: #include <stdio.h> int main(void) { int row, col; for (row = 1; row <= 9; row++) { for (col = 1; col <= row; col++) { printf("
阅读全文
posted @ 2020-04-13 19:58
posted @ 2020-04-13 19:58
posted @ 2020-03-24 09:18