標題:
自我介紹
[打印本頁]
作者:
鄭繼威
時間:
2022-3-8 22:12
標題:
自我介紹
本帖最後由 鄭繼威 於 2022-5-18 19:34 編輯
宣告變數語法 -> 變數型態 變數名字=賦予值
試宣告五個變數來裝你的個人資料, 分別為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-3-9 20:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string name="鄭繼威",school="某某大學";
int age=30;
float h=180.6,w=56.5;
//宣告變數 -> 變數型態 變數名字=賦予值
//變數 -> 盒子
cout<<"我的名字:"<<"name"<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年紀:"<<age<<endl;
cout<<"我的身高:"<<"h"<<endl;
cout<<"我的體重:"<<w<<endl;
//cout 輸出 <<串接符號 ""字串 endl換行 ;這行結束
system("pause"); //黑色畫面暫停
return 0; //告知主程式完成
}
複製代碼
作者:
陳牧謙
時間:
2022-3-9 20:57
#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-3-9 21:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃柏青",school="立志中學";
int age=14;
float h=165.8,w=76.3;
cout<<"我的大名:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年齡:"<<age<<endl;
cout<<"我的身高:"<<h<<endl;
cout<<"我的體重:"<<w<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-3-9 21:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃裕恩", school="新上國小";
int age=9;
float h=140.1, w=38.5;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2022-3-9 21:15
本帖最後由 李彣 於 2022-4-6 20:50 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="李彣",school="仁武國小";
int age=9;
float h=136.6,w=27.5;
cout<<"我的名子:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<endl;
cout<<"身高:"<<h<<endl;
cout<<"體重:"<<w<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-3-9 21:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="陳牧謙", school="瑞祥國小";
int age=9;
float h= 130.9 , w=27.9 ;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
齊振睿
時間:
2022-3-9 21:17
#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");
}
複製代碼
作者:
黃裕恩
時間:
2022-3-13 20:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃裕恩", school="新上國小";
int age=9;
float h=140.1, w=38.5;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-3-13 21:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃裕恩", school="新上國小";
int age=11;
float h=140.1, w=38.5;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-3-13 21:46
本帖最後由 黃裕恩 於 2022-3-13 21:48 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃裕恩", school="新上國小";
int age=11;
float h=140.5, w=34.6;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-3-21 20:00
本帖最後由 鄭繼威 於 2022-3-28 19:18 編輯
#include<iostream> //引入基本輸入輸出函式庫
#include<cstdlib> //引入C Standard Libary標準函式庫
using namespace std; //指定命名空間為std
//主函式
int main()
{
//你要做的事
//宣告變數
//變數型態 變數名字=賦予值
string name="正小威", school="資培會";
//第一種方式
//string name="正小威", school="資培會";
//第二種方式
//string name="正小威";
//string shool="資培會";
int age=25;
float h=180.6, w=56.9;
//宣告5個變數(盒子)
//cout輸出 <<串接符號(方法.字串.變數要一起使用時或是接在一起的時候)要記得加
//endl 結束並換行 ;這行指令結束
cout<<"我的名字:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年紀:"<<age<<endl;
cout<<"我的身高:"<<h<<endl;
cout<<"我的體重:"<<w<<endl;
//註解(給人看的不是給電腦看的)
system("pause"); //讓黑色畫面暫停
return 0; //告知主程式完成
}
複製代碼
作者:
林劭杰
時間:
2022-3-21 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="林劭杰", school="師大附小";
int age=10;
float h=135, w=36;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-3-21 20:14
本帖最後由 鄭繼威 於 2022-3-21 20:27 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="林劭澧", school="高師大附小";
int age=11;
float h=142.2,w=32;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀小學: "<<school<<endl;
cout<<"年令: "<<age<<endl;
cout<<"身高: "<<h<<endl;
cout<<"體重: "<<w<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李睿宸
時間:
2022-4-18 19:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="李睿宸",school="鳳山高中";
int age=17;
float h=176,w=53;
cout<<"我的名字:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"cm"<<endl;
cout<<"體重:"<<w<<"kg"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2