返回列表 發帖

比賽題目 (五)

讓使用者輸入想要的數目, 在螢幕上顯示該數目的星星,
譬如輸入5, 螢幕上就會顯示五顆星星, 執行結果如下:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      int x;
  6.      cout<<"請問你要幾顆星星: ";
  7.      cin>>x ;
  8.      for(int i=1; i<=x; i++)
  9.      {
  10.           cout<<"*";
  11.      }
  12.      cout<<endl;
  13.      system("pause");
  14.      return 0;   
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     cout<<"請問您要幾顆星星"<<endl;
  6.     cout<<"*****"<<endl;
  7.     system("pause");  
  8.     return 0;
  9. }
複製代碼

TOP

本帖最後由 t2364705 於 2012-8-9 10:55 編輯
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      int c;
  6.      cout<<"請輸入你要幾顆星星: ";
  7.      cin>>c;
  8.      for(int i=1; i<=c;i++)
  9.      {
  10.          cout<<"*";        
  11.      }
  12.      cout<<endl;
  13.      system("pause");
  14.      return 0;   
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      int x;
  6.      cout<<"請問你要幾顆星星: ";
  7.      cin>>x ;
  8.      for(int i=1; i<=x; i++)
  9.      {
  10.           cout<<"*";
  11.      }
  12.      cout<<endl;
  13.      system("pause");
  14.      return 0;   
  15. }
複製代碼

TOP

  1. #include <iostream>

  2. using namespace std ;

  3. int main()
  4. {
  5.      int x;
  6.     cout<<"請問您要幾顆星星: ";
  7.     cin>>x;
  8.   for(int i=1; i<=x; i++)
  9.      {
  10.           cout<<"*";
  11.      }
  12. system("pause");
  13. return 0;
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    cout<<"請問您要幾顆星星"<<endl;
  6.    cout<<"*****"<<endl;
  7.    system("pause");
  8.    return 0;   
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      int x;
  6.      cout<<"請問你要幾顆星星: ";
  7.      cin>>x ;
  8.      for(int i=1; i<=x; i++)
  9.      {
  10.           cout<<"*";
  11.      }
  12.      cout<<endl;
  13.      system("pause");
  14.      return 0;   
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"請問你要幾顆星星? ";
  7.     cin>>x;
  8.     for(int i=1; i<=x; i++)
  9.     {
  10.        cout<<"*";        
  11.     }  cout<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

返回列表