返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="張絜晰", school="五福國中";
  7.     float h=163,w=40,a=13;
  8.     cout<<"I am "<<name<<endl;
  9.     cout<<"I study in "<<school<<endl;
  10.     cout<<"My height is "<<h<<", while I weigh "<<w<<" kilograms."<<endl;
  11.     cout<<"My age is "<<a<<" years old!"<<endl;
  12.     system ("pause");
  13.     return 0;
  14. }
複製代碼
Attention Seeker </3

TOP

返回列表