递归乘法表

Posted on 2023-09-03 09:01  封魔NJ  阅读(8)  评论(0编辑  收藏  举报

#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(1,b+1);
}
}
}
int main(){
no(1,1);
return 0;
}