09 2023 档案
递归 99乘法表
摘要:1 #include <iostream> 2 using namespace std; 3 void cheng(int a,int b){ 4 if(a<=9){ 5 if(b<=a){ 6 cout<<a<<"x"<<b<<"="<<a*b<<" "; 7 cheng(a,b+1); 8 } 阅读全文
posted @ 2023-09-03 08:52 黛玉醉打将门神 阅读(16) 评论(1) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示