標題:
自我介紹
[打印本頁]
作者:
鄭繼威
時間:
2022-7-16 01:23
標題:
自我介紹
宣告變數語法 -> 變數型態 變數名字=賦予值
試宣告五個變數來裝你的個人資料, 分別為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;
}
複製代碼
作者:
黃品禎
時間:
2022-7-16 15:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃品禎", school="五福國中";
int age=14;
float h=166.5, w=52.3;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-7-16 15:26
#include<iostream>//引入基本輸入輸出函式庫
#include<cstdlib>
using namespace std;
int main(){
// ...
//int 整數 ex:1 2 3 ....
//float 浮點數(小數) ex:1.2 2.3 3.5 3.14
//string 字串 ex:"apple","bee","cat"
//char 字元 ex:'a','p','p','l','e'
//bool 布林 ex:0(false),1(true)
// 變數型態 變數名字=賦予值
// string name="鄭繼威";
// string school="資培會";
string name="鄭繼威",school="資培會";
int age=25;
float h=180,w=60;
//cout<< 輸出 cin輸入>>
cout<<"我的大名:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年紀:"<<age<<endl;
cout<<"我的身高:"<<h<<"cm"<<endl;
cout<<"我的體重:"<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宜儒
時間:
2022-7-16 15:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string name="余宜儒",school="五福國中";
int age=15;
float H=162,W=46;
cout<<"我的名字:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<H<<"cm"<<endl;
cout<<"體重:"<<W<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2022-7-16 15:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="林雋哲",school="新上國小";
int age=11;
float h=163.5,w=46.9;
cout<<"我的名子:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"今年"<<age<<"歲"<<endl;
cout<<"身高"<<h<<"cm"<<endl;
cout<<"體重"<<w<<"kg"<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
羅紹齊
時間:
2022-7-16 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string name="羅紹齊",school="高雄高工";
string age="16歲";
string height="177.3公分",weight="74.6公斤";
cout<<"我叫做"<<name<<endl;
cout<<"我就讀"<<school<<endl;
cout<<"我今年"<<age<<endl;
cout<<"我身高"<<height<<endl;
cout<<"我體重"<<weight<<endl;
system("pause");
return 0;
}
複製代碼
作者:
羅暐傑
時間:
2022-7-16 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string name="羅暐傑", school="高雄美國學校";
int age=13;
float height= 172.7, weight=57;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<"歲"<<endl;
cout<<"身高: "<<height<<"公分"<<endl;
cout<<"體重: "<<weight<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2022-7-16 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="陳宥霖",school="國昌國中";
int age=13;
float h=171,w=57;
cout<<"我的大名:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年齡:"<<age<<" 歲"<<endl;
cout<<"我的身高"<<h<<" 公分"<<endl;
cout<<"我的體重"<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2022-7-16 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name = "楊芊琦";
string school = "獅湖國小";
string idkn = "不知道";
int age = 12;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀學校:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<idkn<<"公分"<<endl;
cout<<"體重:"<<idkn<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2022-7-16 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="葉佳和",school="福山國中" ;
int age=13;
float h=175.3, w=62.1;
cout<<"名字: "<<name<<endl;
cout<<"學校:"<<school<<endl;
cout<<"年齡:"<<age<<endl;
cout<<"身高:"<<h<<endl;
cout<<"體重:"<<w<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2022-7-16 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="陳泓亦",school="光華國小";
int age=10;
float h=140.3,w=31.5 ;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2022-7-16 15:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string name="徐啟祐",school="七賢國中";
int age=13;
float h=165.5, w=45.1;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2022-7-16 15:28
本帖最後由 翁川祐 於 2022-7-16 15:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="翁川祐",school="陽明國中" ;
int age=12;
float h=162.2,w=45.7;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾瑄羽
時間:
2022-7-16 15:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="鍾瑄羽";
string school="樂群國小";
int age=9;
float h=149;
float w=29.7;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
複製代碼
作者:
盧禹丞
時間:
2022-7-16 15:30
回復
1#
鄭繼威
#include<iostream>
#include<cstdlib>
using namespase std;
int main()
{
string name
int age=9;
float h=138.6, w=27.5;
cont<<"我的大名: "<<name<<endl;
cont<<"就讀: <<school<<endl;[code][/code]
作者:
王睿荻
時間:
2022-7-16 15:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="王睿荻",school="五福國中";
int age=12;
float h=152.6,w=40;
cout<<"我的名字:"<<name<<endl;
cout<<"就讀學校:"<<school<<endl;
cout<<"年齡:"<<age<<" (再一個月就13)"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤重"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2