標題:
自我介紹2
[打印本頁]
作者:
許婷芳
時間:
2019-9-21 07:21
標題:
自我介紹2
本帖最後由 許婷芳 於 2019-9-21 11:58 編輯
試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
[attach]7184[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ //變數
string name="王小明", school="愛國國小"; //名字和學校是字串
int age=9; // 9是整數
float h=138.6f, w=27.5f; //身高和體重都有小數點
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
林羿丞
時間:
2019-9-21 11:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string m="林羿丞",s="勝利國小";
int a=9;
float b=140.1f,c=33.5f;
cout<<"我的大名:"<<m<<endl;
cout<<"就讀:"<<s<<endl;
cout<<"今年:"<<a<<"歲"<<endl;
cout<<"身高:"<<b<<"公分"<<endl;
cout<<"體重:"<<c<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱閎聿
時間:
2019-9-21 11:54
#include<iostream> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{ string name="朱閎聿", school="明華國中"; //名字和學校是字串
int age=12; // 12是整數
float h=152.9f, w=53.5f; //身高和體重都有小數點
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
李穎俊
時間:
2019-9-21 11:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string n="李穎俊",s="福山國小";
int k=10;
float t=49.2,c=15.5;
cout<<"我的大名:"<<n<<endl;
cout<<"就讀:"<<s<<endl;
cout<<"今年:"<<k<<"歲"<<endl;
cout<<"升高:"<<c<<"公分"<<endl;
cout<<"體重:"<<t<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭浚宇
時間:
2019-9-21 11:56
include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="蕭浚宇" , school="福康國小";
int age=10
float h=132.6f, w=27.6f;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀"<<school<<endl;
cout<<"今年"<<age<<歲<<endl;
cout<<"身高"<<h<<公分<<endl;
cout<<"體重"<<w<<公斤<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王銘鴻
時間:
2019-9-21 12:01
本帖最後由 王銘鴻 於 2019-9-27 21:20 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="王銘鴻",o="烏林國小";
int i=9;
float h=135.6f, w=25.6f;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀"<<o<<endl;
cout<<"今年"<<i<<"歲"<<endl;
cout<<"身高"<<h<<endl;
cout<<"體重"<<w<<endl;
system("pause");
return 0;
}
作者:
張淯祺
時間:
2019-9-28 09:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="張淯祺", school="福山國小";
int age=9;
float h=152.6f, w=60.5f;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
龔品誠
時間:
2019-12-18 19:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="龔品誠", school="七賢國中";
int age=12;
float h=160.8, w=52.8f;
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