標題:
自我介紹
[打印本頁]
作者:
李泳霖
時間:
2021-10-8 14:50
標題:
自我介紹
試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
本帖隱藏的內容需要回復才可以瀏覽
作者:
李泳霖
時間:
2021-10-8 20:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//有兩個空的盒子 存放文字(字串)string
string name="黃國穎";//姓名
string school="愛國國小";//學校
//有一個空的盒子 存放整數 int
int age=9;//年紀
//有兩個空的盒子 存放小數點(浮點數)
float h=138.6;//身高
float w=27.5; //體重
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年: "<<age<<"歲"<<endl;
cout<<"身高: "<<h<<"cm"<<endl;
cout<<"體重: "<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳侑諶
時間:
2021-10-8 20:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
string name="吳侑諶";
string school="新光國小";
int age=11;
float h=144.3;
float w=32.4;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"年齡:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"cm"<<endl;
cout<<"體重:"<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤爾帆
時間:
2021-10-8 20:47
#include<iostream> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
string name ="尤爾帆";
string school= "瑞興國小";
int age =9;
float h= 142;
float w=32.3;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"cm"<<endl;
cout<<"體重:"<<w<<"kg"<<endl;
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
尤爾璿
時間:
2021-10-8 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
string name="尤爾璿";
string school="瑞興國小";
int age=11;
float h=152.1;
float w=32.2 ;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"cm"<<endl;
cout<<"體重:"<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王宥凱
時間:
2021-10-8 20:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="王宥凱";
string school="鳳新高中";
int age=15;
float height=178.2;
float weight=50.0;
cout<<"我的大名:"<<name<<endl;
cout<<"學校:"<<school<<endl;
cout<<"年齡:"<<age<<"歲"<<endl;
cout<<"身高:"<<height<<"cm"<<endl;
cout<<"體重:"<<weight<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
賴聿均
時間:
2021-10-8 20:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="賴聿均";
string sch="南成國小";
int age=11;
float h=144.6;
float w=36.1;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀"<<sch<<endl;
cout<<"我"<<age<<"歲"<<endl;
cout<<"我"<<h<<"公分"<<endl;
cout<<"我"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇允翎
時間:
2021-10-18 19:01
本帖最後由 蘇允翎 於 2021-10-19 17:12 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="蘇允翎",school="陽明國小";
int age=9;
float h=130.5,w=25.7;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年"<<age<<"歲"<<endl;
cout<<"身高"<<h<<"公分"<<endl;
cout<<"體重"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2