返回列表 發帖

基本的輸入與輸出

請將基本輸入輸出的程式上傳到這裡~~

  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>
  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

本帖最後由 梁和雋 於 2014-7-3 17:15 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int a;
  7.         cout<<"請輸入數字 輸入後請按Enter    "<<endl;
  8.         cout<<""<<endl;
  9.     cout<<""<<endl;
  10.         cout<<"           sdfsdf                                            "<<endl;
  11.         cout<<"       asdf      asdf                        --------        "<<endl;
  12.         cout<<"          1sdfsdf1                       ---1        --      "<<endl;
  13.         cout<<"        1  sdfsdf 1                         1          ---   "<<endl;
  14.         cout<<"       1   sdfsdf   1                    ---1        --      "<<endl;
  15.         cout<<"            a  a                             --------        "<<endl;
  16.         cout<<"            a  a                                             "<<endl;
  17.         cout<<"            a  a                                             "<<endl;
  18.         cout<<"            a  a                                             "<<endl;
  19.         cin>>a;
  20.         cout<<a<<endl;
  21.         system("pause");
  22.         return 0;
  23. }
複製代碼

TOP

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

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>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int a;
  7.     cin >>a;   
  8.     cout <<"你輸入的數字是"<< a << endl;            
  9.     system("pause");
  10.    
  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>
  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

本帖最後由 謝雨岑 於 2014-7-2 11:32 編輯
  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

[/code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   
    int a;
    cin>>a;
    cout<<"你輸入的數字是"<<a<<endl;
    system("pause");
    return 0;
}
[code]

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>
  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>
  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>
  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

返回列表