Board logo

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

作者: tonyh    時間: 2019-7-26 10:32     標題: 基本輸入輸出

  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-7-26 19:51

  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-7-26 19:52

  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-7-26 19:52

  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.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 施褕均    時間: 2019-7-26 19:53

  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-7-26 19:53

  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-7-26 19:54

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

作者: 余有晉    時間: 2019-7-26 19:55

  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-7-26 19:56

  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-7-26 19:56

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

作者: 董宸佑    時間: 2019-7-26 19:57

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

作者: 蔡忻霓    時間: 2019-7-26 20:01

  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-8-9 15:08

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





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