返回列表 發帖
  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. }
複製代碼

TOP

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

TOP

回復 1# 王瑞喻


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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表