返回列表 發帖

[作業] 函式的建立與執行 (五) - 罰寫小幫手

本帖最後由 鄭繼威 於 2023-9-15 20:18 編輯

試以自訂函式的方式,完成該程式。
譬如:自訂一個 print(string,int) 的函式
使用getline()可以讀整行

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. //定義printer函式
  5. void printer(string str,int count){
  6. //        執行count次的迴圈
  7.         for(int i=1;i<=count;i++){
  8.                 cout<<str<<endl;
  9.         }
  10. }

  11. //主函式
  12. int main(){
  13.                 //輸出
  14.         cout<<"請輸入罰寫內容:";
  15.         string str;
  16.         //輸入(取得使用者輸入的值)
  17. //        cin>>str        (讀到空格就斷了)
  18.                 getline(cin,str);//(讀整行)
  19.         
  20.         cout<<"請輸入罰寫次數:";
  21.                 int count;
  22.                 cin>>count;       
  23.                 printer(str,count);
  24.                
  25.         system("pause");
  26.         return 0;
  27. }
複製代碼
罰寫小幫手.exe

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Attention Seeker </3

TOP

返回列表