- #include<iostream>//引入基本輸入輸出函式庫
- #include<cstdlib>
- using namespace std;
- int main(){
- // ...
- //int 整數 ex:1 2 3 ....
- //float 浮點數(小數) ex:1.2 2.3 3.5 3.14
- //string 字串 ex:"apple","bee","cat"
- //char 字元 ex:'a','p','p','l','e'
- //bool 布林 ex:0(false),1(true)
- // 變數型態 變數名字=賦予值
- // string name="鄭繼威";
- // string school="資培會";
-
- string name="鄭繼威",school="資培會";
- int age=25;
- float h=180,w=60;
- //cout<< 輸出 cin輸入>>
- cout<<"我的大名:"<<name<<endl;
- cout<<"我的學校:"<<school<<endl;
- cout<<"我的年紀:"<<age<<endl;
- cout<<"我的身高:"<<h<<"cm"<<endl;
- cout<<"我的體重:"<<w<<"kg"<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |