输出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  最后一个还有我  阅读(6)  评论(0)    收藏  举报