標題:
自我介紹
[打印本頁]
作者:
鄭繼威
時間:
2022-11-11 01:56
標題:
自我介紹
宣告變數語法 -> 變數型態 變數名字=賦予值
試宣告五個變數來裝你的個人資料, 分別為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-11-17 18:47
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
string name= "Justin H", school= "I-shou international school";
float height=185.0, weight=63.0;
int age=14;
char n='#';
bool d=false;
string intrests="Motorsports";
cout<<"Name: "<<name<<endl;
cout<<"School: "<<school<<endl;
cout<<"Height: "<<height<<endl;
cout<<"Weight: "<<weight<<endl;
cout<<"Age: "<<age<<endl;
cout<<"Intrests: "<<intrests<<endl;
cout<<"My nickname: "<<n<<endl;
cout<<"布林值d是多少? "<<d<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-11-18 19:44
#include<iostream>
using namespace std;
int main(){
//整數 int 10,50,100..
//浮點數(小數) float 3.14...
//字元 char 'a','b','@'
//字串 string "abcdefg","apple"
//宣告變數(盒子)
//變數型態 變數名字=賦予值
string name="鄭繼威";
string school="資培會";
int age=25;
float h=180,w=56;
int apple=500;
//cout輸出 <<串接符號(當方法、變數、字串要一起使用) endl換行
cout<<"我的名字:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年紀:"<<age<<endl;
cout<<"我的身高:"<<h<<endl;
cout<<"我的體重:"<<w<<endl;
cout<<apple<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曹祁望
時間:
2022-11-18 20:01
本帖最後由 曹祁望 於 2022-11-18 20:04 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int ans;
string sch;
int h;
int w;
string name;
cout<<"為了證明你是真人,請回答這個問題"<<endl;
cout<<"8的3次根號="<<endl;
cin>>ans;
if(ans==2)
{
cout<<"你是人"<<endl;
cout<<"學校:"<<endl;
cin>>sch;
cout<<"名字:"<<endl;
cin>>name;
cout<<"身高(cm):"<<endl;
cin>>h;
cout<<"體重(kg):"<<endl<<endl;
cin>>w;
cout<<"你的名字:"<<name<<endl;
cout<<"你的學校:"<<sch<<endl;
cout<<"你的身高(cm):"<<endl;
cout<<"你的體重(kg):"<<endl<<endl;
if(h<130)
{
cout<<"你是矮子"<<endl;
}
if(w>90)
{
cout<<"你很胖"<<endl;
}
}
else
{
cout<<"數學不行阿"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張絜晰
時間:
2022-11-18 20:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="張絜晰", school="五福國中";
float h=163,w=40,a=13;
cout<<"I am "<<name<<endl;
cout<<"I study in "<<school<<endl;
cout<<"My height is "<<h<<", while I weigh "<<w<<" kilograms."<<endl;
cout<<"My age is "<<a<<" years old!"<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2022-11-18 20:06
本帖最後由 蔡沛倢 於 2022-11-18 20:50 編輯
#include<iostream> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
//你要做的事
string name="蔡沛倢",school="過埤國小",like="彈吉他,跳舞,睡覺,睡覺,再睡覺";
int age=11;
float h=146.7, w=39.9;
cout<<"我的名字: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
cout<<"興趣: "<<like<<"^^"<<endl;
int a;
cout<<"請輸入密碼:"<<a<<endl;
cin>>a;
cout<<"已解鎖"<<a<<endl;
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
廖秝瑜
時間:
2022-11-18 20:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="廖秝瑜", school="龍華國小";
int age=11;
float h=140, w=26;
cout<<"我的名子: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邵凡榛
時間:
2022-11-18 20:10
#include<iostream> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式 //你要做的事
{
string name="邵凡榛",school="龍華國小";
int age=11;
float h=140,w=26;
cout<<"我的名字:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年紀:"<<age<<endl;
cout<<"我的身高:"<<h<<endl;
cout<<"我的體重:"<<w<<endl;
//cout輸出 endl換行
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
黃子豪
時間:
2022-11-18 20:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name = "黃子豪", school = "龍華國小";
int age = 11;
float h = 145.5, w = 34.5;
cout<<"我的名子是"<<name<<endl;
cout<<"我是人,不是貓,也不是狗"<<endl;
cout<<"我就讀:"<<school<<endl;
cout<<"今年"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
cout<<"(-_-)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2022-11-18 20:15
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
string city="高雄市";
int year=2022;
float c=25.5;
char D='b',e='#';
bool f=false,g=true;
cout<<"city是字串變數,他的值是"<<city<<endl;
cout<<"year是整數變數,他的值是"<<year<<endl;
cout<<"c是浮點數變數,他的值是"<<c<<endl;
cout<<"d字元變數,他的值是"<<D<<endl;
cout<<"e也字元變數,他的值是"<<e<<endl;
cout<<"f是布林值變數,他的值是"<<f<<endl;
cout<<"g也是布林值變數,他的值是"<<g<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張桔熙
時間:
2022-11-18 20:20
#include<iostream> //引入 <標準函示庫> 標頭檔 input & output stream
#include<cstdlib> //引入 <基本輸入輸出> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
string name="張桔熙";
string school="資培會";
int age=11;
float h=153,w=48;
string a="男";
cout<<"我的名子:"<<name<<endl;
cout<<"我的性別:"<<a<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年紀:"<<age<<endl;
cout<<"我的身高:"<<h<<endl;
cout<<"我的體重:"<<w<<endl;
system("pause"); // 讓畫面暫停
return 0; //回傳到主控台,告知該程式已成功執行
}
複製代碼
作者:
呂得銓
時間:
2022-11-18 20:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="呂得銓", school= "鹽埕國中";
int age=12;
float h=153 , w=41;
cout<<"我的名子: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2022-11-18 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="盧玄皓",school="明華國中";
int age=12;
float h=158.8,w=47.2;
cout<<"名字"<<name<<endl;
cout<<"就讀"<<school<<endl;
cout<<"歲數"<<age<<"歲"<<endl;
cout<<"身高"<<h<<"公分"<<endl;
cout<<"體重"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張桔熙
時間:
2022-11-18 20:39
#include<iostream> //引入 <標準函示庫> 標頭檔 input & output stream
#include<cstdlib> //引入 <基本輸入輸出> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
string name="張桔熙";
string school="資培會";
int age=11;
float h=153,w=48;
string a="男";
cout<<"我的名子:"<<name<<endl;
cout<<"我的性別:"<<a<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年紀:"<<age<<endl;
cout<<"我的身高:"<<h<<endl;
cout<<"我的體重:"<<w<<endl;
system("pause"); // 讓畫面暫停
return 0; //回傳到主控台,告知該程式已成功執行
}
複製代碼
作者:
呂宗晉
時間:
2022-11-18 20:40
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2