本帖最後由 許婷芳 於 2020-9-19 15:16 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a; //int ---> integer 整數
- cout<<"請輸入一整數: ";
- cin>>a;
- cout<<"你剛輸入的數字是: "<<a<<endl;
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string a;
- cout<<"請輸入一個文字:"; //cout輸出
- cin>>a; //cin輸入
- cout<<"你剛剛輸入的文字:"<<a<<endl;
- system("pause");
- return 0;
- }
複製代碼 |