請將名字與生日的變數型態設為字元陣列,
身高設為整數, 體重設為浮點數.- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char name[]="黃國穎";
- char birthday[]="1979/03/26";
- int height=170;
- float weight=64.2;
- cout<<"我的名字是: "<<name<<endl;
- cout<<"我的生日是: "<<birthday<<endl;
- cout<<"我的身高是: "<<height<<endl;
- cout<<"我的體重是: "<<weight<<endl;
- system("pause");
- return 0;
- }
複製代碼 |