- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="劉愷恩",school="正興國中";
- int age=14;
- float height=164.4,weight=48.9;
- cout<<"我的名字:"<<name<<endl;
- cout<<"就讀:"<<school<<endl;
- cout<<"今年:"<<age<<" 歲"<<endl;
- cout<<"身高:"<<height<<" 公分"<<endl;
- cout<<"體重:"<<weight<<" 公斤"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |