- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name = "黃子豪", school = "龍華國小";
- int age = 11;
- float h = 145.5, w = 34.5;
-
- cout<<"我的名子是"<<name<<endl;
- cout<<"我是人,不是貓,也不是狗"<<endl;
- cout<<"我就讀:"<<school<<endl;
- cout<<"今年"<<age<<"歲"<<endl;
- cout<<"身高:"<<h<<"公分"<<endl;
- cout<<"體重:"<<w<<"公斤"<<endl;
- cout<<"(-_-)"<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |