標題:
個人小檔案 (二)
[打印本頁]
作者:
tonyh
時間:
2013-10-12 16:43
標題:
個人小檔案 (二)
請將名字與生日的變數型態設為字元陣列,
身高設為整數, 體重設為浮點數.
#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;
}
複製代碼
作者:
施伯叡
時間:
2013-10-12 16:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char myName [] = "施伯叡";
char birthday [] = "06/11";
int height = 139;
float weight = 37.9;
cout <<"我的名字是 : "<< myName << endl;
cout <<"我的生日是 : "<< birthday << endl;
cout <<"我的身高是 : "<< height << endl;
cout <<"我的體重是 : "<< weight << endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-10-12 16:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
char myName [7] = "張郁庭";
char birthday [6] = "10/26";
int height = 165;
float weight = 30.5;
cout << "我的名字是:" << myName << endl;
cout << "我的生日是:" << birthday << endl;
cout << "我的身高是:" << height << endl;
cout << "我的體重是:" << weight << endl;
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-10-12 16:50
本帖最後由 周雍程 於 2013-10-12 16:51 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char name[7] = "周雍程";
char dob[6] = "12/13";
float height = 135.6;
float weight = 33.4;
cout << "我的名字是:" << name << endl;
cout << "我的生日是:" << dob << endl;
cout << "我的身高是:" << height << "公分" << endl;
cout << "我的體重是:" << weight << "公斤" << endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-10-12 16:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char myName[]="海綿寶寶";
cout<<"我的名字是:"<<myName<<endl;
char birthday[]="9/26";
cout<<"我的生日是:"<<birthday<<endl;
int height=137;
cout<<"我的身高是:" <<height<<endl;
float weight=32.7;
cout<<"我的體重是:"<<weight<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-10-12 16:52
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char n [7] = "張郁偵";
char b [5] = "10/8";
float h= 167.3;
float w= 45;
cout << "我的名字是:" << n << endl;
cout << "我的生日是:" << b << endl;
cout << "我的身高是:" << h << endl;
cout << "我的體重是:" << w << endl;
system ("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-10-12 16:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
char Name[]="笑書神俠";
char dob []="2000/11/1";
int height=162.5;
float weight=59.5;
cout<<"my name is:"<<Name<<endl;
cout<<"my birthday is:"<<dob<<endl;
cout<<"my height is:"<<height<<endl;
cout<<"my weight is:"<<weight<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2