Board logo

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

作者: 王瑞喻    時間: 2021-2-1 15:08     標題: 基本輸入輸出 (一)

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

作者: 何若晴    時間: 2021-2-1 15:15

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

作者: 方黃生    時間: 2021-2-1 15:15

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

作者: 莊鈞宸    時間: 2021-2-1 15: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. }
複製代碼

作者: 蔡宜均    時間: 2021-2-1 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. }
複製代碼

作者: 黃昱凱    時間: 2021-2-1 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. }
複製代碼

作者: 李天輝    時間: 2021-2-1 15:22

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

作者: 任璿    時間: 2021-2-1 15:30

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

作者: 王瑞喻    時間: 2021-2-1 15:33

  1. #include<iostream> //輸入輸出功能  工具箱1
  2. #include<cstdlib> //標準函式庫     工具箱2
  3. using namespace std; //叫做std的房間
  4. int main()//主函式
  5. {
  6.     int a;
  7.     cout<<"請輸入一整數:";
  8.     cin>>a;
  9.     cout<<"您輸入的數字是"<<a<<endl;
  10.     system("pause");//暫停畫面
  11.     return 0;//回傳0
  12. } //ctrl+A 全選   +C複製  +V貼上
複製代碼

作者: 王偉樺    時間: 2021-2-1 15:33

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

作者: 李奕廷    時間: 2021-2-1 15:34

  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.     system("pause");      
  11.     return 0;              
  12. }
複製代碼
回復 1# 王瑞喻
作者: 張晏滕    時間: 2021-2-1 15:34

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

作者: 吳亦勛    時間: 2021-2-1 15:35

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int  a;
count<<"請輸入一整數";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;

   system("pause");
   return0;
}
作者: 王廷悠    時間: 2021-2-1 15:35

回復 1# 王瑞喻


    #include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   int a;
   cout<<"請輸入一個整數:";
   cin>>a;
   cout<<"您輸入的數字是"<<a<<endl;
   
   system("pause");  
   return 0;
}
作者: 莊念篪    時間: 2021-2-1 15:35

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int a;
    cout<<"請輸入一整數";
    cin>>a;
    cout<<"您輸入的數字是"<<a <<endl;
     
    system("pause");
    return 0;
}
作者: 方凱聲    時間: 2021-2-1 15:36

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

作者: 陳建承    時間: 2021-2-1 15:36

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

作者: 林昕霓    時間: 2021-2-1 15:38

回復 1# 王瑞喻


    #include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int a;
    cout<<"請輸入一整數:";
    cin>>a;
    cout<<"您輸入的數字是"<<a<<endl;
     
    system("pause");
    return 0;
}
作者: 怡璇    時間: 2021-2-1 15:39

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

作者: 鄧崴仁    時間: 2021-2-1 15:40

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

作者: 蘇廷祐    時間: 2021-2-1 15:41

  1. #include<iostream>     //引入 <基本輸入輸出> 標頭檔 in & out stream
  2. #include<cstdlib>      //引入 <標準函式庫> 標頭檔 c standard library
  3. using namespace std;   //指定命名空間為 std
  4. int main()    //主函式
  5. {
  6.     int  a;
  7.     cout<<a;"請輸入一個整數:";
  8.     cin>>a;
  9.     cout<<"您輸入的數字是"<<a <<endl
  10.      
  11.     system("pause");       //讓畫面暫停
  12.     return 0;              //回傳0到主控台,告知該程式已成功執行
  13. }
複製代碼

作者: 陳仕約    時間: 2021-2-1 15:41

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

作者: 張鈊喬    時間: 2021-2-1 15:41

回復 1# 王瑞喻


    #include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int a;
    cout<<"請輸入一整數:";
    cin>>a;
    cout<<"您輸入的數字是" <<a<<endl;
   
    system("pause");
    retun 0;
}
作者: 洪曼崴    時間: 2021-2-1 15:42

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

作者: 陳仕約    時間: 2021-2-1 15:42

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

作者: 陳仕約    時間: 2021-2-1 15:56

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

作者: 陳仕約    時間: 2021-2-1 15:57

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

作者: 陳仕約    時間: 2021-2-1 15:58

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

作者: 陳仕約    時間: 2021-2-1 15:59

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

作者: 方黃生    時間: 2021-2-2 10:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b
  7.     cout<<"請輸入a數:";
  8.     cin>>a
  9.      cout<<"請輸入b數:";
  10.     cin>>b
  11.     cout<<"a="<<a<<endl;
  12.     cout<<"b="<<b<<endl;
  13.     if(a>b)
  14.     {
  15.        cout<<"a>b"<<endl;               
  16.     }
  17.     else
  18.     {
  19.          cout<<"a<b"<<endl;  
  20.     }
  21.     else
  22.     {
  23.          cout<<"a=b"<<endl;  
  24.     }
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

作者: 吳亦勛    時間: 2021-2-2 10:55

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=,y=;
  7.    
  8.    
  9.     cout<<"當x值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  15.    
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼





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