返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string name="謝?儀";
  8.     string school="龍華國中";
  9.     int age=-100 ;
  10.     float height=0;
  11.     float weight-111111111111;
  12.     cout<<"我的名:"<<name
  13.         <<"讀"<<school<<
  14.         <<age<<"歲"<<
  15.         <<"體重:" <<"g"
  16.         <<endl;
  17.     system("pause")
  18.     return 0;
  19. }
複製代碼

TOP

返回列表