Board logo

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

作者: tonyh    時間: 2015-7-2 15:17     標題: 基本輸入輸出

本帖最後由 tonyh 於 2015-7-3 11:52 編輯

基本輸入輸出練習
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x, y;
  7.     cout<<"請輸入x的值: ";
  8.     cin>>x;
  9.     cout<<"請輸入y的值: ";
  10.     cin>>y;
  11.     cout<<"x="<<x<<endl;
  12.     cout<<"y="<<y<<endl;   
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 張凱翔    時間: 2015-7-2 15:19

本帖最後由 tonyh 於 2015-7-3 10:08 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入x:";
  8.     cin>>x;
  9.     cout<<"你剛輸入的數字是:"<<x<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 張健勳    時間: 2015-7-3 11:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入x值噢 OuO:";
  8.     cin>>x;
  9.     cout<<"請輸入y噢 OuO:";
  10.     cin>>y;
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 洪煒庭    時間: 2015-7-3 11:55

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

作者: 錢建樺    時間: 2015-7-3 11:55

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

作者: 徐煒博    時間: 2015-7-3 11:55

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

作者: 蔡季樺    時間: 2015-7-3 11:55

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

作者: 錢建樺    時間: 2015-7-3 11:56

回復 4# 洪煒庭


    要玩了沒
作者: 陳德晉    時間: 2015-7-3 11:56

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     cout<<"請輸入x的值: ";
  9.     cin>>x;
  10.     cout<<"請輸入y的值: ";
  11.     cin>>y;
  12.     cout<<"x="<<x<<endl;
  13.     cout<<"y="<<y<<endl;   
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼
回復 1# tonyh
作者: 余洋毅    時間: 2015-7-3 11:57

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cin>>x;
  8.     cout<<"The number you enter is "<<x<<endl;
  9.     system("pause");
  10.     return 0;   
  11. }   
複製代碼

作者: 蔡秉宏    時間: 2015-7-3 12:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x, y;
  7.     cout<<"請輸入x的值: ";
  8.     cin>>x;
  9.    
  10.     cout<<"請輸入y的值: ";
  11.     cin>>y;
  12.     cout<<"x="<<x<<endl;
  13.     cout<<"y="<<y<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 吳承志    時間: 2015-7-3 12:03

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

作者: 王奕勛    時間: 2015-7-4 09:38

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

  4. int main()
  5. {
  6.     int a;
  7.     int b;
  8.    
  9.     cout<<"請輸入a:";
  10.     cin>>a;
  11.     cout<<"請輸入b:";
  12.     cin>>b;
  13.    
  14.     cout<<"a="<<a<<endl;
  15.     cout<<"b="<<b<<endl;
  16.    
  17.     if(a<b)
  18.     {
  19.         cout<<"a<b"<<endl;
  20.     }
  21.    
  22.     if(a==b)
  23.     {
  24.         cout<<"a=b"<<endl;
  25.     }
  26.    
  27.     if(a>b)
  28.     {
  29.         cout<<"a>b"<<endl;
  30.     }
  31.    
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼





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