返回列表 發帖

基本輸入輸出 (一)

本帖最後由 tonyh 於 2016-5-20 10:39 編輯

基本輸入輸出練習

  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string a;
  7.     cout<<"請輸入一字串:";
  8.     cin>>a;
  9.     cout<<"你剛輸入的字串是:"<<a<<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.     cout<<"請輸入一整數";
  8.     cin>>a;
  9.     cout<<"你剛剛輸入的整數是:"<<a<<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.     cout<<"請輸入一整數";
  8.     cin>>a;
  9.     cout<<"你輸入的數是:"<<a<<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.      cout<<"請輸入一數:";
  8.      cin>>a;
  9.      cout<<"你輸入的數是:"<<a<<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. cout<<"請輸入一整數:";
  8. cin>>a;
  9. cout<<"你剛輸入的數是:"<<a<<endl;
  10. return 0;


  11. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"請輸入一整數:";
  7.     int a;
  8.     cin>>a;
  9.     cout<<"你剛輸入的數字是:"<<a<<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;//int--->integer整數
  7.      cout<<"請輸入一整數:9453";
  8.      cin>>a;
  9.      cout<<"你剛輸入的數字是:9453"<<a<<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.     cout<<"請輸入密碼:";
  8.     cin>>a;
  9.     cout<<"你確定你的密碼是"<<a<<"嗎?"<<endl<<endl<<endl<<endl;
  10.     cout<<"密碼錯誤,我就知道你是駭客,哈哈哈~~~~!!!!"<<endl;
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string a;
  7.    cout<<"請輸入一個數:";
  8.    cin>>a;
  9.    cout<<"你輸入的數是:"<<a<<endl;

  10.    system("pause");
  11.    return 0;                                         
  12. }
複製代碼

TOP

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

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

TOP

返回列表