標題:
9/12作業
[打印本頁]
作者:
may
時間:
2015-9-12 11:35
標題:
9/12作業
請搜集資料,運用今天教的資料型態和變數,寫一個C++程式,介紹賈伯斯
作者:
吳承勳
時間:
2015-9-17 16:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name = "賈伯斯";
string English = "Steven Paul Jobs";
int age = 56;
string born = "1955年2月24日";
cout << "他的大名:" << name << endl;
cout << "他的大名:" << English << endl;
cout << "今年:" << age << "歲" << endl;
cout << "出生:" << born << "公分" << endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-9-17 20:24
本帖最後由 蔡季樺 於 2015-9-17 20:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age=56,money=83,height=188,weight=59;
string born="1955年2月24日",dead="2011年10月5日(56歲)",name="賈伯斯";
string Englishname="Steve Jobs",causeofdeath="轉移性胰腺神經內分泌腫瘤";
cout<<"他的大名:"<<name<<endl;
cout<<"他的英文大名:"<<Englishname<<endl;
cout<<"他的身高:"<<height<<"公分"<<endl;
cout<<"他的體重:"<<weight<<"公斤"<<endl;
cout<<"他的年齡:"<<age<<"歲"<<endl;
cout<<"他的淨資產:"<<money<<"億"<<endl;
cout<<"生日:"<<born<<endl;
cout<<"逝世:"<<dead<<endl;
cout<<"死因:"<<causeofdeath<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-9-19 11:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name = "賈伯斯";
string English = "Steven Paul Jobs";
int age = 56;
string born = "1955年2月24日";
cout << "中文名子:"<<name<<endl;
cout << "英文名子:"<<English<<endl;
cout << "今年:" <<age<<"歲"<<endl;
cout << "出生日:"<< born<<endl;
system("pause");
return 0;
複製代碼
作者:
任立宇
時間:
2015-9-20 14:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main();
{
string name="賈伯斯",
int age=56;
float height=187.96,weight=59;
cout<<"大名:"<<name<<endl;
cout<<"死亡"<<age<<"歲"<<endl;
cout<<"身高"<<height<<"公分"<<endl;
cout<<"體重"<<weight<<"公斤"<<endl;
system("pause")
複製代碼
作者:
任立宇
時間:
2015-9-20 14:50
#include<iostream
#include<cstdlib>
using namespace std;
int main()
{
string name="賈伯斯",
int age=56;
float height=187.96,weight=59;
cout<<"大名:"<<name<<endl;
cout<<"死亡"<<age<<"歲"<<endl;
cout<<"身高"<<height<<"公分"<<endl;
cout<<"體重"<<weight<<"公斤"<<endl;
system("pause") [/code]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2