- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="蒙鎧柔",school="龍華國中";
- int age=14 ;
- float h=158 ,w=40.1 ;
- cout<<"name:"<<name<<endl;
- cout<<"school:"<<school<<endl;
- cout<<"age:"<<age<<" years old"<<endl;
- cout<<"high:"<<h<<" cm"<<endl;
- cout<<"weight:"<<w<<" kg"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |