標題:
自我介紹
[打印本頁]
作者:
王瑞喻
時間:
2020-3-2 14:52
標題:
自我介紹
~試宣告五個變數來裝你的個人資料~
分別為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;
}
複製代碼
作者:
鐘彥博
時間:
2020-3-7 16:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="鐘彥博",school="英明國中";
int age=13;
float w=63.6,h=160.1;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<endl;
cout<<"身高:"<<h<<endl;
cout<<"體重:"<<w<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鐘彥博
時間:
2020-3-7 16:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="鐘彥博",school="英明國中";
int age=13;
float w=63.6,h=160.1;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<" 歲"<<endl;
cout<<"身高:"<<h<<" 公分"<<endl;
cout<<"體重:"<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂尚霖
時間:
2020-3-7 17:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="呂尚霖",school="福山國小";
int age=11;
float h=136.6,w=35.9;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
夏子涵
時間:
2020-3-7 17:11
本帖最後由 夏子涵 於 2020-3-7 17:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="夏子涵",school="高雄女中";
int age=16;
float h=164.8,w=49.9;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林帛毅
時間:
2020-3-7 17:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="林帛毅",school="新上國小";
int age=11;
float h=147.8,w=40.3;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<"歲"<<endl;
cout<<"身高: "<<h<<"公分"<<endl;
cout<<"體重: "<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董定宇
時間:
2020-3-14 15:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="董定宇",school="楊民果想";
int age=12;
float h=161.5, w=52.1;
cout<<"佬資教:"<<name<<endl;
cout<<"讀:"<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公里"<<endl;
cout<<"體重: "<<w<<"公噸"<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
林帛毅
時間:
2020-5-23 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="林帛毅",school="兟喪果想";
int age=11;
float h=147.8,w=40.3;
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