返回列表 發帖

005_輸入變數後輸出

宣告 a, b, c, d 四個變數,個別型態為整數、浮點數、字元與字串。接著讓使用者個別輸入兩個數字與兩段文字並存到 a, b, c, d 內。
最後個別輸出 a, b, c, d 的內容

  1. 請輸入一個整數 a : 10
  2. 請輸入一個浮點數 b : 65.3
  3. 請輸入一個字元 c : A
  4. 請輸入一個字串 d : 大中天
  5. ======================
  6. a = 10
  7. b = 65.3
  8. c = A
  9. d = 大中天
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a ;
  7. float b ;
  8. char c ;
  9. string d ;
  10. cout<<"請輸入一個整數 a :";
  11. cin>>a;

  12. cout<<"請輸入一個浮點數 b : ";
  13.         cin>>b;     

  14. cout<<"請輸入一個字元 c :";
  15.     cin>>c;

  16. cout<<"請輸入一個字串 d :";       
  17.         cin>>d;
  18. cout<<"======================"<<endl;

  19. cout<<"a ="<< a <<endl;
  20.         cout<<"b ="<<b <<endl;
  21.        
  22.         cout<<"c ="<< c <<endl;
  23.         cout<<"d ="<< d <<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 a;
  7.         float  b;
  8.         string c;
  9.         char d;
  10.        
  11.         cout<<"請輸入一個整數 a : ";
  12.         cin>>a;
  13.        
  14.     cout<<"請輸入一個浮點數 b : ";
  15.         cin>>b;
  16.        
  17.         cout<<"請輸入一個字元 c : ";
  18.         cin>>c;
  19.        
  20.         cout<<"請輸入一個字串 d : ";
  21.         cin>>d;
  22.                
  23.         cout<<"======================"<<endl;
  24.        
  25.         cout<<"a="<<a<<endl;
  26.         cout<<"b="<<a<<endl;
  27.         cout<<"c="<<c<<endl;
  28.         cout<<"d="<<d<<endl;
  29.        
  30.         system("pause");
  31.         return 0;
  32. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.         int a;
  7.         float b;
  8.         string c;
  9.         char d;
  10.        
  11.         cout << "請輸入一個整數 a :";
  12.         cin >> a;
  13.        
  14.         cout << "請輸入一個浮點數 b :";
  15.         cin >> b;
  16.        
  17.         cout << "請輸入一個字串 c :";
  18.         cin >> c;
  19.        
  20.         cout << "請輸入一個字元 d :";
  21.         cin >> d;
  22.         cout <<"======================"<<endl;
  23.        
  24.         cout << "a="<<a<<endl;
  25.         cout << "b="<<b<<endl;
  26.         cout << "c="<<c<<endl;
  27.         cout << "d="<<d<<endl;
  28.         system("pause");
  29.         return 0;
  30. }
複製代碼

TOP

返回列表