標題:
自我介紹
[打印本頁]
作者:
張翼安
時間:
2015-9-4 22:45
標題:
自我介紹
本帖最後由 張翼安 於 2015-9-4 22:46 編輯
試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
[attach]1374[/attach]
#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;
}
複製代碼
作者:
張健勳
時間:
2015-9-12 11:22
本帖最後由 張翼安 於 2015-9-12 11:41 編輯
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
string name="張健勳";
string school="五福國中";
int age=9;
float height=161.5;
float weight=50.6;
cout<<"俺的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年"<<age<<"歲"<<endl;
cout<<"身高:"<<heigt<<"公分"<<endl;
cout<<"體重:"<<weight<<"公斤"<<endl;
system("pause")
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-9-12 11:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name= "吳承勳";
string school= "福東國小";
int age = 11;
float h = 150.4, w = 43.0;
cout << "我的大名:" << name << endl;
cout << "就讀:" << school << endl;
cout << "今年:" << age << "歲" << endl;
cout << "身高:" << h << "公分" << endl;
cout << "體重:" << w << "公斤" << endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-9-12 11:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="張文擇", school="龍華國小";
int age=10;
float h=140.0, w=28.0;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-9-12 11:31
本帖最後由 tonyh 於 2015-9-29 17:02 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="frank",school="福山國中";
int age=12;
float h=160.1,w=57.5;
cout<<"俺的姓名:"<<name<<endl;
cout<<"就讀"<<school<<endl;
cout<<"今年"<<age<<"歲" <<endl;
cout<<"身高"<<h<<"公分" <<endl;
cout<<"體重"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-9-12 11:39
#include<iostream> //
#include<cstdlib> //
using namespace std;
int main()//
{
string name = "leo";
string schoo = "勝利國小" ;
int ago = 11 ;
float height=153.0;
float weight=40.0;
cout<<"我的大名"<<name<<endl;
cout<<"就讀國小"<<schoo<<endl;
cout<<"身高"<< height<<"公分"<<endl;
cout<<"體重"<<weight<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2