返回列表 發帖
本帖最後由 黃裕恩 於 2023-3-8 19:41 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void print(string a,int b){
  5.     for(int i=1; i<=b; i++)   
  6.     {
  7.        cout<<a<<endl;     
  8.     }
  9. }
  10. int main(){
  11.     string a;
  12.     int b;
  13.     cout<<"罰寫內容: ";
  14.     getline(cin,a);
  15.     cout<<"罰寫次數: ";
  16.     cin>>b;
  17.     print(a,b);
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

返回列表