2023年9月3日

摘要: #include<bits/stdc++.h>using namespace std;void no(int a,int b){ if(b<=9){ if(a<=b){ cout<<a<<"*"<<b<<"="<<a*b<<" "; no(a+1,b); }else{ cout<<endl; no( 阅读全文

posted @ 2023-09-03 09:01 封魔NJ 阅读(22) 评论(0) 推荐(0)