返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int age= 10;
  7.   string school= "KAS school";
  8.   string teacher="Mrs Rylander";
  9.   cout<<"大家好我是顏可晴,我有一隻狗叫可樂他是一隻黑貴賓。"<<endl;
  10.   cout<<"age?"<<endl;
  11.   cin>>age;
  12.   cout<<"I'm "<<age<<"."<<endl;
  13.   cout<<"school?"<<endl;
  14.   cin>>school;
  15.   cout<<"I'm at"<<school<<" school."<<endl;
  16.   cout<<"Teacher?"<<endl;
  17.   cin>>teacher;
  18.   cout<<"My teacher is "<<teacher<<endl;
  19.   system("pause");
  20.   return 0;
  21. }
複製代碼

TOP

返回列表