返回列表 發帖

基本輸入輸出

本帖最後由 鄭繼威 於 2022-7-23 00:48 編輯


cout 輸出<-------->cin 輸入
cout<<x; 輸出x
cin>>x; 輸入x
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;   //int ---> integer  整數
  7.     cout<<"請輸入一整數: ";
  8.     cin>>a;
  9.     cout<<"你剛輸入的數字是: "<<a<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"你輸入一整數:";
  7.     string a;
  8.     //取得使用者輸入
  9. //        cout<< 輸出
  10. //        cin>>輸入
  11.     cin>>a;
  12.     cout<<"你剛輸入的數字是:"<<a<<endl;
  13.     if(){
  14.             if{
  15.                         for
  16.                 }
  17.         }
  18.    
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

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

  4. int main()
  5. {
  6. int a;  
  7. cout<<"請輸入一整數:";
  8. cin>>a;   
  9. cout<<"你剛輸入的數字是:"<<a<<endl;   
  10. system("pause");
  11. return 0;   
  12.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入一個整數:";
  8.     cin>>a;
  9.     cout<<"你剛輸入的數子是:" <<a<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入一個整數:";
  8.     cin>>a;
  9.     cout<<"你剛剛輸入的數字是: "<<a<<endl;
  10.     system("pause");
  11.     return 0;
  12.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4.       int main()
  5.      {
  6.       int a;   
  7.       cout<<"請輸入一整數:";
  8.       cin>>a;
  9.       cout<<"你剛輸入的數為:"<<a<<endl;
  10.       
  11.       
  12.       
  13.       system("pause");
  14.       return 0;
  15.       }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     cout<<"請輸入一整數:";
  6.     int a;
  7.     cin>>a;
  8.     cout<<"你剛剛輸入整數是:"<<a<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"輸入一個數:";
  8.     cin>>a;
  9.     cout<<"你輸入的數字是:"<<a<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.    int a;   //int ---> integer  整數
  7.     cout<<"請輸入一整數: ";
  8.     cin>>a;
  9.     cout<<"你剛輸入的數字是: "<<a<<endl;
  10.     system("pause");
  11.      return 0;
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main (){
  5.     int a;
  6.     cout<<"請您輸入一個整數: ";
  7.     cin>>a;
  8.     cout<<"你剛剛輸入的數字是:"<<a<<endl;
  9.     system("pause");
  10.     return 0;
  11.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name;
  7.     int round = 0;
  8.     if(round!=1)
  9.     {
  10.                 cout<<"請為您的人工不智慧機器人命名:";
  11.                 cin>>name;
  12.                 cout<<"您好,我是"<<name<<endl;
  13.                 round = round +1;
  14.     }
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"歡迎使用屁孩名子生成器"<<endl;
  7.     cout<<"這是基本輸入輸出的魔改版"<<endl;
  8.     string a;   
  9.     cout<<"請輸入你的名子: ";
  10.     cin>>a;
  11.     cout<<"你的屁孩名子是:X煞氣a\ "<<a<<"\ X"<<endl;
  12.     cout<<"我到底做了什麼鬼"<<endl;
  13.     system("pause");
  14.     return 0;   
複製代碼

TOP

  1. [code]#include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;     //int ---> integer  整數
  7.     cout<<"請輸入一整數:  ";
  8.     cin>>a;
  9.     cout<<"你剛輸入的數字是: "<<a<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼
[/code]

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入一個整數:";
  8.     cin>>a;
  9.     cout<<"你剛輸入的數子是:" <<a<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;   
  7.     cout<<"請輸入一整數: ";
  8.     cin>>a;
  9.     cout<<"你剛輸入的數字是: "<<a<<endl;
  10.     system("pause");
  11.     return 0;
  12.    
  13. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入一個整數:";
  8.     cin>>a;
  9.     cout<<"你剛輸入的數子是:" <<a<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

返回列表