输出1—10

#include <bits/stdc++.h>
using namespace std;
int fc(int s){
	if(s==1){
		return 1;
	}else{
		cout<<s<<" ";
		return fc(s-1);
	}
	
} 

int main(){
	int n;
	cin>>n;
	cout<<fc(n);
	return 0;
}

  

posted @ 2025-03-23 09:27  昵称就是最好的昵称  阅读(1)  评论(0)    收藏  举报