全部评论 1

  • #include <bits/stdc++.h>
    using namespace std;
    
    //填写解决程序
    
    void solve(){
    	int t; 
    	cin >> t;
    	cout << t;
    	while(t --){
    		//在下边补全函数 
    		
    		
    		
    		cout << "\n\n\n\n";
    	}
    }
    
    int main(){
    	freopen("input.in","r",stdin);
    	freopen("output.out","w",stdout);
    	
    	solve();
    	
    	fclose(stdin);
    	fclose(stdout);
    	return 0;
    }
    

    解决的代码在哪填?

    2024-11-30 来自 河北

    0

热门讨论