Board logo

標題: 基本輸入輸出 [打印本頁]

作者: 陳品肇    時間: 2019-3-16 09:13     標題: 基本輸入輸出

  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. }
複製代碼

作者: 黃傳耀    時間: 2019-3-16 10:46

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

作者: 謝蓮金    時間: 2019-3-16 10:46

  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. }
複製代碼

作者: 洪子涵    時間: 2019-3-16 10:46

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

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

作者: 李易展    時間: 2019-3-16 10:49

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

作者: 邱楷宸    時間: 2019-3-16 10:50

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

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

作者: 王建葦    時間: 2019-3-16 10:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入一個整數:";
  8.     cin>>x;
  9.     cout<<"2019/"<<"3/"<<"6"<<"(六)"<<"AM"<<"10:"<<"50"<<endl;
  10.     cout<<"您輸入的整數為:"<<x<<endl;
  11.     system("pause");
  12.     return 0;

  13. }
複製代碼

作者: 洪藜芸    時間: 2019-3-16 11:24

  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. }
複製代碼

作者: 陳宇柏    時間: 2019-5-22 13:34

  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. }
複製代碼





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