返回列表 發帖

基本輸入輸出

本帖最後由 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. }
複製代碼

本帖最後由 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. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

回復 4# 洪煒庭


    要玩了沒

TOP

  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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表