Board logo

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

作者: tonyh    時間: 2016-2-2 14:35     標題: 基本輸入輸出 (一)

本帖最後由 tonyh 於 2016-2-2 14:49 編輯

基本輸入輸出練習
  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. }
複製代碼

作者: 方宥鈞    時間: 2016-2-2 14:53

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

作者: 林昱岑    時間: 2016-2-2 14:57

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

作者: 黃千瑜    時間: 2016-2-2 14:57

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

作者: 謝以愛    時間: 2016-2-2 14:58

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

作者: 吳建錡    時間: 2016-2-2 15:09

  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.       
  12.       return 0;
  13. }
複製代碼

作者: 孫石青    時間: 2016-2-2 15:10

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

作者: 陳泓廷    時間: 2016-2-2 15:11

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

作者: 陳泓瑜    時間: 2016-2-2 15:13

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     int x;
  7.     cout<<"PLEASE SET A NUMBER:";
  8.     cin>>x;
  9.     cout<<"THE NUMBER IS:"<<x<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼





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