返回列表 發帖
  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.     cin>>a;
  15.     cout<<"罰寫次數:";
  16.         cin>>b;
  17.         print(a,b);
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

[code]#include<iostream>
#include<cstdlib>
using namespace std;
void print(string a,int b)
{
    for(int i=1; i<=b; i++)   
    {
       cout<<a<<endl;     
    }
}
int main()
{
    string a;
    int b;
    cout<<"罰寫內容: ";
  getline(cin,a);
    cout<<"罰寫次數: ";
    cin>>b;
    print(a,b);
    system("pause");
    return 0;
}
[code]

TOP

返回列表