標題:
自我介紹
[打印本頁]
作者:
王瑞喻
時間:
2020-5-28 12:32
標題:
自我介紹
試宣告五個變數來裝你的個人資料, 分別為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-5-28 20:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="張微?",school="龍華國中";
int age=15;
float h=167.3,w=48.7;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
回復
1#
王瑞喻
作者:
楊易
時間:
2020-5-28 20:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string na="楊易",sc="民族國小";
int a=15;
float h=163.5,w=55;
cout<<"我的大名: "<<na<<endl;
cout<<"就讀: "<<sc<<endl;
cout<<"今年: "<<a<<"歲"<<endl;
cout<<"身高: "<<h<<"cm"<<endl;
cout<<"體重: "<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
潘堉恩
時間:
2020-5-28 20:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="潘堉恩",school="三名國中";
int age=14;
float x=167.4 ,y=49.4;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<"歲"<<endl;
cout<<"身高"<<x<<"cm"<<endl;
cout<<"體重"<<y<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳東璘
時間:
2020-5-28 20:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="吳東璘",school="民族國中";
int age=15;
float h=169.2,w=52.4;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0 ;
}
複製代碼
作者:
朱逸庭
時間:
2020-5-28 20:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="朱逸庭",school="明華國中";
int age=15;
float h=162,w=45;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡昀妮
時間:
2020-5-28 20:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="蔡昀妮",school="明華國中";
int age=15;
float h=155.5,w=45.0;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
作者:
李柏穎
時間:
2020-5-28 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="李柏穎", school="左營國中";
int age=158;
float h=168.2,w=55.8;
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