- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int age=0; //變數的宣告 數字 int=0 初始值等於0
- string school;// string 字串(中文、英文、數字、符號....)
-
- cout << "請輸入你的年齡" << endl; //字串 要用""包起來
- cin >> age; //輸入 18 存進age
- cout << "請輸入你的學校" << endl; //endl = 換行
- cin >> school;
- cout << "我是大帥哥,今年" << age << "歲" << endl; //字串 + 變數
- cout << "我讀" << school << endl;
-
- system("pause");
- return 0;
- }
複製代碼 |