標題:
個人小檔案
[打印本頁]
作者:
游東祥
時間:
2013-10-5 18:09
標題:
個人小檔案
程式執行後顯示下列內容:
我的名字是 : 游東祥
我的生日是 : 7/25
我的身高是 : 168.5
我的體重是 : 65.7
----------------------------------
宣告四個變數
名字、生日為字元陣列
身高、體重為浮點數
作者:
謝典育
時間:
2013-10-5 18:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char myName [7] = "謝典育";
cout <<"我的名字是:"<< myName << endl;
char birthday [6] = "12/24";
cout <<"我的生日是:"<< birthday << endl;
char height [6] = "150.7";
cout <<"我的身高是:"<< height << endl;
char kg [5] = "78.6";
cout <<"我的體重是:"<< kg << endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-10-6 08:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char myName[9]="嵐雲道人"
cout<<"我的名字是:"<<myName<<endl;
char birthday[6]="11/1";
cout<<"我的生日是:"<<birthday<<endl;
float height=162.5;
cout<<"我的身高是:" <<height<<endl;
float weight=60.2;
cout<<"我的體重是:"<<weight<<endl;
system ("pause")
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-10-6 14:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char myName[9]="海綿寶寶";
cout<<"我的名字是:"<<myName<<endl;
char birthday[6]="9/26";
cout<<"我的生日是:"<<birthday<<endl;
float height=137.4;
cout<<"我的身高是:" <<height<<endl;
float weight=32.7;
cout<<"我的體重是:"<<weight<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-10-11 20:37
本帖最後由 張郁庭 於 2013-10-12 16:42 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
char myName [7] = "張郁庭";
cout << "我的名字是:" << myName << endl;
char birthday [6] = "10/26";
cout << "我的生日是:" << birthday << endl;
float height =180.5;
cout << "我的身高是:" << height << endl;
float weight = 30.5;
cout << "我的體重是:" << weight << endl;
system ("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-10-11 20:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
char myname [7]="張郁偵";
cout <<"我的名字是:" << myname <<endl;
cout <<"我的生日是:10/8日"<<endl;
float h = 167.3;
cout<<"我的名字是:"<< h <<"公分" <<endl;
float w = 45.5;
cout<<"我的體重是:"<< w <<"公斤" <<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-10-11 20:41
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
char myName[7] = "周雍程";
cout << "我的名字是:" << myName << endl;
char birthday[6] = "12/13";
cout << "我的生日是:" << birthday << endl;
float height = 135.6;
cout << "我的身高是:" << height << "公分" << endl;
char kg[5] = "33.4";
cout << "我的體重是:" << kg << "公斤" << endl;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-10-12 10:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char myName [7] = "施伯叡";
cout <<"我的名字叫 : "<< myName << endl;
char birthday [6] = "06/11";
cout <<"我的生日是 : "<< birthday << endl;
float height = 138.6;
cout <<"我的身高是 : "<< height << endl;
float kg = 37.9;
cout <<"我的體重是 : "<< kg << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2