摘要: 输出完整乘法表 代码 #include<stdio.h> int main() { int a,b; for(a=1;a<=9;a++) { for(b=1;b<=9;b++) printf("%d*%d=%d\t",a,b,a*b);/*\t为tab缩进*/ printf("\n");/*对应第一 阅读全文
posted @ 2022-11-23 15:42 Maple-十二枫 阅读(153) 评论(0) 推荐(1)