Board logo

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

作者: tonyh    時間: 2017-1-24 09:59     標題: 基本輸入輸出 (一)

本帖最後由 tonyh 於 2017-1-24 10:28 編輯

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

作者: 宋禹禛    時間: 2017-1-24 10:12

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

作者: 楊修禹    時間: 2017-1-24 10:12

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

作者: 黃子晏    時間: 2017-1-24 10:12

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

作者: 呂承霖    時間: 2017-1-24 10:13

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

作者: 莊旻叡    時間: 2017-1-24 10:13

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

作者: 宋禹禛    時間: 2017-1-24 10:16

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

作者: 呂承霖    時間: 2017-1-24 10:16

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

作者: 沈竑希    時間: 2017-1-24 10:16

  1. [code]#include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cin>>a;
  8.     cout<<"你輸入的數字是"<<a<<endl;
  9.    
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼
[/code]
作者: 楊修禹    時間: 2017-1-24 10:16

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

作者: 黃子晏    時間: 2017-1-24 10:17

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

作者: 吳翊愷    時間: 2017-1-24 10:18

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

作者: 黃鼎家    時間: 2017-1-24 10:19

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

作者: 余孟儒    時間: 2017-1-24 10:28

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

作者: 楊修禹    時間: 2017-1-24 10:38

  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+y="<<x+y<<endl;
  12.     cout<<"x-y="<<x-y<<endl;
  13.     cout<<"x*y="<<x*y<<endl;
  14.     cout<<"x/y="<<x/y<<endl;
  15.     cout<<"x%y="<<x%y<<endl;
  16.    
  17.     system("pause");
  18.     return 0;
  19. }   
複製代碼

作者: 余孟儒    時間: 2017-1-24 11:02

  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<<",y的值為"<<y<<"時..."<<endl;         
  12.     cout<<"x+y=" <<x+y<<endl;     
  13.     cout<<"x-y=" <<x-y<<endl;
  14.     cout<<"x*y=" <<x*y<<endl;
  15.     cout<<"x/y=" <<x/y<<endl;
  16.     cout<<"x%y=" <<x%y<<endl;   
  17.          
  18.     system("pause");
  19.     return 0;      
  20. }      
複製代碼





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