返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. string name="葉佳和",school="福山國中" ;
  7. int age=13;
  8. float h=175.3, w=62.1;
  9. cout<<"名字: "<<name<<endl;
  10. cout<<"學校:"<<school<<endl;
  11. cout<<"年齡:"<<age<<endl;
  12. cout<<"身高:"<<h<<endl;
  13. cout<<"體重:"<<w<<endl;
  14. system("pause");
  15. return 0;
  16. }
複製代碼

TOP

返回列表