返回列表 發帖

基本輸出輸入

  1. #include <iostream>        //引入輸出輸入的指令
  2. #include <cstdlib>         //引入C的標準函式
  3. using namespace std;       //使用標準函式庫命名空間

  4. int main()                 //程式從 "main" 開始執行
  5. {

  6.     int a;                 //宣告 a 變數為 int 整數型態
  7.     cin >> a;              //透過 cin 將輸入的數字放到 a 變數內
  8.     cout << "你輸入的數字:" << a << endl;
  9.    
  10.     system("pause");       //讓程式暫停
  11.     return 0;              //程式執行正確
  12. }
複製代碼

  1. #include <iostream>                     //引入輸出輸入指令
  2. #include <cstdlib>                     //引入c的語言 的標準函式
  3. using namespace std;                  //用標準函式庫命名空間

  4. int main()                           //程式從"main"開始執行

  5. {
  6. int a;   
  7. cin >>a ;
  8.   cout<<" 你輸入的數字:"<<a<<endl;   
  9. cout <<"hello jason 吳宗桓"<<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  a;
  7.     cin>>a;
  8.     cout<<"您輸入的數字是"<<a<<endl;
  9.   
  10.    
  11.     system("pause");
  12.     return 0;      
  13. }
複製代碼

TOP

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行

  5. [
  6.            int x;
  7.            int y;
  8.            x=12;
  9.            y=95;
  10.            }
  11. {
  12.     int a;
  13.     cin >> a;
  14.     cout <<"你有的數字"<< a <<endl;
  15.      
  16.     cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
  17.     system("pause");            //讓程式暫停   
  18.     return 0;                   //告訴程式執行正確
  19. }
  20.                                     
複製代碼

TOP

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

TOP

  1. #include <iostream>        //引入輸出輸入的指令

  2. #include <cstdlib>         //引入C的標準函式

  3. using namespace std;       //使用標準函式庫命名空間



  4. int main()                 //程式從 "main" 開始執行

  5. {



  6.     int a;                 //宣告 a 變數為 int 整數型態

  7.     cin >> a;              //透過 cin 將輸入的數字放到 a 變數內

  8.     cout << "你輸入的數字:" << a << endl;

  9.    

  10.     system("pause");       //讓程式暫停

  11.     return 0;              //程式執行正確

  12. }
複製代碼

TOP

  1. #include <iostream>        //引入輸出輸入的指令
  2. #include <cstdlib>         //引入C的標準函式
  3. using namespace std;       //使用標準函式庫命名空間

  4. int main()                 //程式從 "main" 開始執行
  5. {

  6.     int a;                 //宣告 a 變數為 int 整數型態
  7.     cin >> a;              //透過 cin 將輸入的數字放到 a 變數內
  8.     cout << "你輸入的數字:" << a << endl;
  9.    
  10.     system("pause");       //讓程式暫停
  11.     return 0;              //程式執行正確
  12. }
複製代碼

TOP

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

TOP

  1. #include <iostream>        //引入輸出輸入的指令
  2. #include <cstdlib>         //引入C的標準函式
  3. using namespace std;       //使用標準函式庫命名空間

  4. int main()                 //程式從 "main" 開始執行
  5. {

  6.     int a;                 //宣告 a 變數為 int 整數型態
  7.     cin >> a;              //透過 cin 將輸入的數字放到 a 變數內
  8.     cout << "你輸入的數字:" << a << endl;
  9.    
  10.     system("pause");       //讓程式暫停
  11.     return 0;              //程式執行正確
  12. }
複製代碼

TOP

  1. #include <iostream>         //引入輸出.入的指令
  2. #include <cstdlib>          //引入c的標準函式
  3. using namespace std;        //使用標準函式庫命名
  4. int main()                  //程式從"main"執行
  5. {
  6.     int  a;
  7.     cin>>a;
  8.     cout<<"你輸入的數字是"<<a<<endl;
  9.    
  10.     system("pause");        //讓程式暫停
  11.     return 0;               //告訴程式執行正確
  12. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>            //引入輸出輸入
  2. #include<cstdlib>             //使用C的標準函式庫
  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. }
複製代碼

TOP

#include<iostream>            //引入輸出輸入
#include<cstdlib>             //使用C的標準函式庫
using namespace std;          //使用命名空間

int main()                    //開始執行程式
{
   
   int a;
   cin>> a;
   cout<< "你輸入的數字是" << a <<endl;
    system("pause");          //程式暫停
    return 0;                 // 告訴程式運作正確
}

TOP

本帖最後由 張郁庭 於 2013-8-14 09:54 編輯
  1. #include <iostream>        //引入輸出輸入的指令
  2. #include <cstdlib>         //引入C的標準函式
  3. using namespace std;       //使用標準函式庫命名空間
  4. int main()                 //程式從 "main" 開始執行
  5. {
  6. int a;                     //宣告 a 變數為 int 整數型態
  7. cin >> a;                  //透過 cin 將輸入的數字放到 a 變數內
  8. cout << "你輸入的數字:" << a << endl;
  9. system("pause");           //讓程式暫停
  10. return 0;                  //程式執行正確
  11. }
複製代碼

TOP

返回列表