標題:
自我介紹
[打印本頁]
作者:
tonyh
時間:
2015-3-13 21:02
標題:
自我介紹
本帖最後由 tonyh 於 2015-3-13 21:28 編輯
試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
[attach]1167[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃國穎", school="愛國國小";
int age=9;
float h=138.6, w=27.5;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-3-13 21:25
#include<iostream>
#include<cstdlib>
using namespace std;
main()
{
string name="沈子耕", school="台灣大學";
int age=15, n=180;
float h=179.9 , w= 70;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"長度: "<<h<< " 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
cout<<"智商: "<<n<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2015-3-13 21:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="林侑成" ,school="新莊國小";
int age=9;
float h=148,w=32;
cout<<"我的大名"<<name<<endl;
cout<<"學校"<<school<<endl;
cout<<"年齡"<<age<<" 歲"<<endl;
cout<<"身高"<<h<<" 公分"<<endl;
cout<<"體重"<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-3-13 21:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="陳思惟";
string school="博愛";
int age=9;
float h=148;
string w="?";
cout<<"姓名:"<<name<<endl;
cout<<"就讀學校:"<<school<<"國小"<<endl;
cout<<"年齡:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"cm"<<endl;
cout<<"體重:"<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-3-14 15:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="曾挺桂" , school="左營國中";
int age=13;
float h=178.6 ,w=58.4;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2