C/C++文件輸入輸出代碼演示

0.原始代碼 #include<bits/stdc++.h> using namespace std; //讀入整數n和字符串sg,將其輸出n次到屏幕上 int main(){ int n; string sg; cin>>n>>sg; for(int i=0;i<n;++i) cout<<sg; return 0; } 1.重定向 #include<bits/stdc++.h> u
相關文章
相關標籤/搜索