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