Board logo

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

作者: tonyh    時間: 2017-2-3 14:46     標題: 基本輸入輸出 (一)

本帖最後由 tonyh 於 2017-2-3 15:17 編輯

  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-2-3 15:03

  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-2-3 15:04

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

作者: 吳尚謙    時間: 2017-2-3 15:05

  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-2-3 15:05

本帖最後由 張閎鈞 於 2017-2-3 15:06 編輯

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int a;
    cout<<"請輸入一個整數:";
    cin>>a;
    cout<<"您輸入的數字是"<<a<<endl;
      
    system("pause");
    return 0;
}[code][/code]
作者: 呂亮逵    時間: 2017-2-3 15:05

  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-2-3 15:06

  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-2-3 15:07

  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-2-3 15:13

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

作者: 曹瑈芠    時間: 2017-2-3 15:13

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

作者: 曹瑈芠    時間: 2017-2-3 15:14

  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-2-3 15:17

  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-2-3 15:18

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





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