標題:
自我介紹
[打印本頁]
作者:
王瑞喻
時間:
2020-7-22 15: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-7-22 16:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="陳柏恩",school="右昌國中";
int age=16;
float h=169.8,w=78.6;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王晏璿
時間:
2020-7-22 16:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="王晏璿",school="高雄女中";
int age=15;
float h=168.8, w=50;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱玟瑜
時間:
2020-7-22 16:25
#include<stdio.h>
#include<stdlib.h>
using namespace std;
int main(){
string name="邱玟瑜", school="高雄女中";
int age=16;
float h=165.0, w=49.3;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<"歲"endl;
cout<<"身高: "<<h<<"公分"endl;
cout<<"體重: "<<w<<"公斤"endl;
system("pause");
return 0;
}
複製代碼
作者:
黃韋誌
時間:
2020-7-22 16:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃韋誌",school="道明中學";
int age=15;
float h=166.2 w=55.6;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭軒濬
時間:
2020-7-22 16:26
#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<<"今年:"<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
樂柏謙
時間:
2020-7-22 16:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="樂柏謙", school="華興中學";
int age=15;
float h=168.8, w=47.3;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
複製代碼
作者:
林秉軒
時間:
2020-7-22 16:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string n="林秉軒",s="明華國中";
int a=15;
float w=51.0,h=169.9;
cout<<"我的大名"<<n<<endl;
cout<<"就讀"<<s<<endl;
cout<<"今年"<<a<<"歲"<<endl;
cout<<"身高"<<h<<"公分"<<endl;
cout<<"體重"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周秉融
時間:
2020-7-22 16:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="周秉融", school="明華國中";
int age=15;
float h=168.8,w=60.7;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何郡毓
時間:
2020-7-22 16:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="何郡毓",school="民族國中";
int age=15;
float h=173, w=60;
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