2020年3月31日
摘要: //输出九九乘法表 #include <stdio.h> int main() { int m,n; for(m=1;m<=9;m++) { n=1; for(n=1;n<=9;n++) { printf("%4d",m*n); } printf("\n"); } return 0; } //输出下 阅读全文
posted @ 2020-03-31 13:47 BillGates-- 阅读(4154) 评论(0) 推荐(0)