Board logo

標題: 函式的建立與執行 (五) [打印本頁]

作者: 鄭繼威    時間: 2022-5-27 14:25     標題: 函式的建立與執行 (五)

本帖最後由 鄭繼威 於 2022-6-18 11:52 編輯

函式的建立與執行 (四)
只是四是可以讀整行的(getline),這個單純就讀一個單字
  1. cin>>str;        //(讀到空格就斷了)        //ex:只能讀單字
  2. getline(cin,str); //(讀整行)            //ex:可以讀單字、句子
複製代碼
[attach]13089[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 鍾易澄    時間: 2022-5-28 08:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 高鋐鈞    時間: 2022-5-28 09:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 曾善勤    時間: 2022-5-28 10:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 高昀昊    時間: 2022-5-28 11:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 孫子傑    時間: 2022-6-11 10:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 許宸瑀    時間: 2022-6-11 11:09

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 郭博鈞    時間: 2022-6-11 11:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 柳侑辰    時間: 2022-6-18 10:14

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 徐譽豈    時間: 2022-6-18 11:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }

  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 許馹東    時間: 2022-6-18 11:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void count(int n,string s)
  5. {
  6.     for(int i=1;i<=n;i++){
  7.                 cout<<"第"<<i<<"次的"<<s<<endl;
  8.         }
  9. }
  10. void print(string s){
  11.         int n;
  12.         cout<<"你要幾次?";
  13.         cin>>n;
  14.         count(n,s);
  15. }
  16. int main()
  17. {
  18.     string str;
  19.     cout<<"你要印什麼?";
  20.     cin>>str;
  21.     print(str);
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 田家齊    時間: 2022-6-18 11:52

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void printer(string str,int count)
  5. {
  6. for(int i=1;i<=count;i++)
  7. cout<<"第"<<i<<"次的"<<str<<endl;
  8. }
  9. int main()
  10. {
  11.     cout<<"你要印甚麼:";
  12.     string str;
  13.     getline(cin,str);
  14.     cout<<"幾次:";
  15.         int count;
  16.         cin>>count;
  17.     printer(str,count);
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2