- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main ()
- {
- string name= "Justin H", school= "I-shou international school";
- float height=185.0, weight=63.0;
- int age=14;
- char n='#';
- bool d=false;
- string intrests="Motorsports";
- cout<<"Name: "<<name<<endl;
- cout<<"School: "<<school<<endl;
- cout<<"Height: "<<height<<endl;
- cout<<"Weight: "<<weight<<endl;
- cout<<"Age: "<<age<<endl;
- cout<<"Intrests: "<<intrests<<endl;
- cout<<"My nickname: "<<n<<endl;
- cout<<"布林值d是多少? "<<d<<endl;
- system ("pause");
- return 0;
- }
複製代碼 |