Board logo

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

作者: 游東祥    時間: 2014-1-22 10:45     標題: 基本的輸入與輸出

[attach]812[/attach]

如圖,第一行讓使用者輸入一個數字。然後在第二行顯示剛才輸入的那個數字。如:"您輸入的數字是:10"
作者: 蔡維庭    時間: 2014-1-22 11:14

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

  4. int main()
  5. {

  6.     int a = 0;
  7.    
  8.     cin >> a;
  9.     cout << "您輸入的數字是:" << a << endl;
  10.     system("pause");
  11.    
  12.     cout << "碗洗乾淨了~" << endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 林宇翔    時間: 2014-1-22 11:14

本帖最後由 林宇翔 於 2014-1-22 11:26 編輯
  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;
  4. int main()
  5. {   
  6.       int a = 15786548;
  7.       cin >> a;  
  8.       cout <<"你輸入的數字是:"<< a <<endl;
  9.       system ("pause");      
  10.       cout << "請再輸入一次喔~" << endl;
  11.       system ("pause");
  12.       cout << "加油!再輸入一次~" << endl;
  13.       system ("pause");
  14.       cout << "出了一點差錯,請再輸入一次~" << endl;  
  15.       system ("pause");  
  16.       cout << "對不起,你被騙了,再輸入一次~" << endl;  
  17.       system ("pause");
  18.       cout << "無止境的再輸入一次~" << endl;
  19.       system ("pause");  
  20.       cout << "就快結束了,再輸入一次~" << endl;
  21.       system ("pause");  
  22.       cout << "結束了,請輸入最後一次~" << endl;
  23.       system ("pause");
  24.       cout << "告訴你一個秘密,請輸入一次" << endl;
  25.       system ("pause");
  26.       cout << "再輸入一次~" << endl;
  27.       system ("pause");
  28.       cout << "再輸入一次~" << endl;
  29.       system ("pause");
  30.       cout << "再輸入一次~" << endl;
  31.       system ("pause");
  32.       cout << "再輸入一次~" << endl;
  33.       system ("pause");
  34.       cout << "再輸入一次~" << endl;
  35.       system ("pause");
  36.       cout << "再輸入一次~" << endl;
  37.       system ("pause");
  38.       cout << "再輸入一次~" << endl;
  39.       system ("pause");
  40.       cout << "再輸入一次~" << endl;
  41.       system ("pause");
  42.       cout << "再輸入一次~" << endl;
  43.       system ("pause");
  44.       cout << "秘密就是~" << endl;
  45.       system ("pause");
  46.       cout << "再輸入一次!!!" << endl;
  47.       system ("pause");
  48.       cout << "秘密就是....你被騙了" << endl;
  49.       system ("pause");
  50.       return 0;
  51. }
複製代碼

作者: 陳均    時間: 2014-1-22 11:15

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

作者: 李允軒    時間: 2014-1-22 11:15

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;
  4. int main()
  5. {
  6.     int a = 23;
  7.     cin >> a;
  8.     cout <<"你輸入的數字是:" << a << endl;
  9.     system("pause");
  10.     return 0;   
  11. }
複製代碼

作者: 陳婉平    時間: 2014-1-22 11:15

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

  4. int main()
  5. {
  6.     int a = 1002;
  7.     cin >> a;
  8.     cout << "您輸入的數字是:" << a << endl;
  9.    
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 黃國清    時間: 2014-1-22 11:15

本帖最後由 黃國清 於 2014-1-22 11:17 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

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

作者: 黃詠軒    時間: 2014-1-22 11:16

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

  4. int main()
  5. {
  6.    int a = 0;
  7.    cin >> a;
  8.    cout << "您輸入的數字是:"<<a <<endl;
  9.    system("pause");
  10.    return 0;
  11. }
複製代碼

作者: 劉得恩    時間: 2014-1-22 11:18

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

作者: 劉怡修    時間: 2014-1-22 11:19

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;
  4.     int main()  
  5.   {  
  6.      
  7.    int a =0;
  8.    cin >> a;
  9.     cout <<"你輸入的數字是 :"<< a <<endl;
  10.      system("pause");
  11.      return 0;
  12. }   
  13.      
複製代碼

作者: 郭品君    時間: 2014-1-22 11:19

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=10;
cin>>a;
cout <<"您輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
作者: 任冠宇    時間: 2014-1-22 11:19

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

作者: 劉芝均    時間: 2014-1-22 11:20

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

  4. int main()
  5. {
  6.    
  7.     int a =100;
  8.     cin >> a;
  9.     cout <<"您輸入的數字是:"<< a <<endl;
  10.    
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 朱俐蒨    時間: 2014-1-22 11:23

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

作者: 劉凱平    時間: 2014-1-22 11:23

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

  4. int main()
  5. {
  6.    
  7.     int a = 0;
  8.     cin >> a;
  9.     cout << "您輸入的數字是: "<< a << endl;
  10.       
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 郭品君    時間: 2014-1-22 11:25

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

作者: 劉凱平    時間: 2014-1-22 12:00

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x =21;
  6.     int y =5;
  7.    
  8.     cout<<"當 x = " <<x<< ",y = "<<"時:"<< endl;
  9.     cout << " x + y ="<< x+y <<endl;
  10.     cout << " x - y ="<< x-y <<endl;
  11.     cout << " x * y ="<< x*y <<endl;
  12.     cout << " x / y ="<< x/y <<endl;
  13.     cout << " x % y ="<< x%y <<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼





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