王思哲 • 2年前
using namespace std; void get(int a){
get(a*2); get(a*3); cout<<a; return;
} int main(){
int a; cin>>a; get(a); return 0;
}
评论:
请先登录,才能进行评论