- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int age= 10;
- string school= "KAS school";
- string teacher="Mrs Rylander";
- cout<<"大家好我是顏可晴,我有一隻狗叫可樂他是一隻黑貴賓。"<<endl;
- cout<<"age?"<<endl;
- cin>>age;
- cout<<"I'm "<<age<<"."<<endl;
- cout<<"school?"<<endl;
- cin>>school;
- cout<<"I'm at"<<school<<" school."<<endl;
- cout<<"Teacher?"<<endl;
- cin>>teacher;
- cout<<"My teacher is "<<teacher<<endl;
- system("pause");
- return 0;
- }
複製代碼 |