返回列表 發帖
本帖最後由 王銘鴻 於 2019-9-27 21:20 編輯

#include<iostream>
#include<cstdlib>
using namespace        std;

int        main()
{
    string name="王銘鴻",o="烏林國小";
    int i=9;   
    float h=135.6f, w=25.6f;
     cout<<"我的大名:"<<name<<endl;
     cout<<"就讀"<<o<<endl;
     cout<<"今年"<<i<<"歲"<<endl;
     cout<<"身高"<<h<<endl;
     cout<<"體重"<<w<<endl;  
        system("pause");
                return 0;
}

TOP

返回列表