標題:
自我介紹
[打印本頁]
作者:
tonyh
時間:
2016-8-27 13:49
標題:
自我介紹
本帖最後由 tonyh 於 2019-4-27 11:09 編輯
試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
#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;
}
複製代碼
作者:
許紘誌
時間:
2016-8-27 14:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="許紘誌", school="英明國中";
int age=14;
float h=167.5,w=50.4;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2016-8-27 14:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃宥鈞",school="福東國小";
int age=11;
float h=154.5,w=32.5;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾彥翔
時間:
2016-8-27 14:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="曾彥翔", school="陽明國中";
int age=13;
float h=156, w=50;
cout<<"我的大名"<<name<<endl;
cout<<"就讀"<<school<<endl;
cout<<"今年"<<age<<"歲"<<endl;
cout<<"身高"<<h<<"公分"<<endl;
cout<<"體重"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2016-8-27 14:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="譚暐霖", school="KAS";
int age=11;
float h=148, w=39.5;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<"歲"<<endl;
cout<<"身高: "<<h<<"cm"<<endl;
cout<<"體重 "<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2016-8-27 14:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="蔡幸融",school="信義國小";
int age=9;
float h=140, w=41;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<age<<"歲"<<endl;
cout<<h<<"公分"<<endl;
cout<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榜蔓
時間:
2016-8-27 14:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="洪榜蔓";
string school="勝利國小";
int age =11;
float h=143.78,w=31.8;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳晉榕
時間:
2016-8-27 14:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="吳晉榕";
string school="正興國中";
int year=12;
float h=165, w=40;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<year<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2016-8-27 15:01
本帖最後由 黃宥鈞 於 2016-8-27 15:03 編輯
當我沒發
作者:
朱聿謙
時間:
2016-8-31 19:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="朱聿謙",school="福東國小";
int age=11;
float h=143.0,w=39.70;
cout<<"我的名字:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年"<<age<<"歲"<<endl;
cout<<"身高"<<h<<"cm"<<endl;
cout<<"體重"<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2