- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="張絜晰", school="五福國中";
- float h=163,w=40,a=13;
- cout<<"I am "<<name<<endl;
- cout<<"I study in "<<school<<endl;
- cout<<"My height is "<<h<<", while I weigh "<<w<<" kilograms."<<endl;
- cout<<"My age is "<<a<<" years old!"<<endl;
- system ("pause");
- return 0;
- }
複製代碼 |