Board logo

標題: 自我介紹 [打印本頁]

作者: 鄭繼威    時間: 2022-11-11 01:56     標題: 自我介紹

宣告變數語法  ->  變數型態 變數名字=賦予值

試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="黃國穎", school="愛國國小";
  7.     int age=9;
  8.     float h=138.6, w=27.5;
  9.     cout<<"我的大名: "<<name<<endl;
  10.     cout<<"就讀: "<<school<<endl;
  11.     cout<<"今年: "<<age<<" 歲"<<endl;
  12.     cout<<"身高: "<<h<<" 公分"<<endl;
  13.     cout<<"體重: "<<w<<" 公斤"<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 何權晉    時間: 2022-11-17 18:47

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     string name= "Justin H", school= "I-shou international school";
  7.     float height=185.0, weight=63.0;
  8.     int age=14;
  9.     char n='#';
  10.     bool d=false;
  11.     string intrests="Motorsports";
  12.     cout<<"Name: "<<name<<endl;
  13.     cout<<"School: "<<school<<endl;
  14.     cout<<"Height: "<<height<<endl;
  15.     cout<<"Weight: "<<weight<<endl;
  16.     cout<<"Age: "<<age<<endl;
  17.     cout<<"Intrests: "<<intrests<<endl;
  18.     cout<<"My nickname: "<<n<<endl;
  19.     cout<<"布林值d是多少? "<<d<<endl;
  20.     system ("pause");
  21.     return 0;
  22. }
複製代碼

作者: 鄭繼威    時間: 2022-11-18 19:44

  1. #include<iostream>

  2. using namespace std;

  3. int main(){
  4.         //整數 int 10,50,100..
  5.         //浮點數(小數) float 3.14...
  6.         //字元 char 'a','b','@'
  7.         //字串 string "abcdefg","apple"
  8.        
  9.         //宣告變數(盒子)
  10.         //變數型態 變數名字=賦予值
  11.         string name="鄭繼威";
  12.         string school="資培會";
  13.         int age=25;
  14.         float h=180,w=56;
  15.        
  16.         int apple=500;

  17.         //cout輸出 <<串接符號(當方法、變數、字串要一起使用) endl換行
  18.         cout<<"我的名字:"<<name<<endl;
  19.         cout<<"我的學校:"<<school<<endl;
  20.         cout<<"我的年紀:"<<age<<endl;
  21.         cout<<"我的身高:"<<h<<endl;
  22.         cout<<"我的體重:"<<w<<endl;

  23.         cout<<apple<<endl;

  24.         system("pause");
  25.         return 0;
  26. }
複製代碼

作者: 曹祁望    時間: 2022-11-18 20:01

本帖最後由 曹祁望 於 2022-11-18 20:04 編輯
  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;
  4. int main()
  5. {
  6.     int ans;
  7.     string sch;
  8.     int h;
  9.     int w;
  10.     string name;
  11.    
  12.     cout<<"為了證明你是真人,請回答這個問題"<<endl;
  13.     cout<<"8的3次根號="<<endl;
  14.     cin>>ans;
  15.     if(ans==2)
  16.     {
  17.         cout<<"你是人"<<endl;
  18.         
  19.         cout<<"學校:"<<endl;
  20.         cin>>sch;
  21.         cout<<"名字:"<<endl;
  22.         cin>>name;
  23.         cout<<"身高(cm):"<<endl;
  24.         cin>>h;
  25.         cout<<"體重(kg):"<<endl<<endl;
  26.         cin>>w;
  27.         cout<<"你的名字:"<<name<<endl;
  28.         cout<<"你的學校:"<<sch<<endl;
  29.         cout<<"你的身高(cm):"<<endl;
  30.         cout<<"你的體重(kg):"<<endl<<endl;
  31.         
  32.         if(h<130)
  33.         {
  34.             cout<<"你是矮子"<<endl;
  35.         }
  36.         if(w>90)
  37.         {
  38.             cout<<"你很胖"<<endl;
  39.         }
  40.     }
  41.     else
  42.     {
  43.         cout<<"數學不行阿"<<endl;
  44.     }
  45.    
  46.     system("pause");
  47.     return 0;
  48. }
複製代碼

作者: 張絜晰    時間: 2022-11-18 20:04

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="張絜晰", school="五福國中";
  7.     float h=163,w=40,a=13;
  8.     cout<<"I am "<<name<<endl;
  9.     cout<<"I study in "<<school<<endl;
  10.     cout<<"My height is "<<h<<", while I weigh "<<w<<" kilograms."<<endl;
  11.     cout<<"My age is "<<a<<" years old!"<<endl;
  12.     system ("pause");
  13.     return 0;
  14. }
複製代碼

作者: 蔡沛倢    時間: 2022-11-18 20:06

本帖最後由 蔡沛倢 於 2022-11-18 20:50 編輯
  1. #include<iostream>     //引入 <基本輸入輸出> 標頭檔 input & output stream
  2. #include<cstdlib>      //引入 <標準函式庫> 標頭檔 c standard library
  3. using namespace std;   //指定命名空間為 std
  4. int main()    //主函式
  5. {
  6.     //你要做的事
  7.     string name="蔡沛倢",school="過埤國小",like="彈吉他,跳舞,睡覺,睡覺,再睡覺";
  8.     int age=11;
  9.     float h=146.7, w=39.9;
  10.     cout<<"我的名字: "<<name<<endl;  
  11.     cout<<"就讀: "<<school<<endl;
  12.     cout<<"今年: "<<age<<" 歲"<<endl;
  13.     cout<<"身高: "<<h<<" 公分"<<endl;
  14.     cout<<"體重: "<<w<<" 公斤"<<endl;
  15.     cout<<"興趣: "<<like<<"^^"<<endl;
  16.     int a;
  17.     cout<<"請輸入密碼:"<<a<<endl;
  18.     cin>>a;
  19.     cout<<"已解鎖"<<a<<endl;
  20.     system("pause");       //讓畫面暫停
  21.     return 0;              //回傳0到主控台,告知該程式已成功執行
  22. }
複製代碼

作者: 廖秝瑜    時間: 2022-11-18 20:07

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="廖秝瑜", school="龍華國小";
  7.     int age=11;
  8.     float h=140, w=26;
  9.     cout<<"我的名子: "<<name<<endl;
  10.     cout<<"就讀: "<<school<<endl;
  11.     cout<<"今年: "<<age<<" 歲"<<endl;
  12.     cout<<"身高: "<<h<<" 公分"<<endl;
  13.     cout<<"體重: "<<w<<" 公斤"<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 邵凡榛    時間: 2022-11-18 20:10

  1. #include<iostream>     //引入 <基本輸入輸出> 標頭檔 input & output stream
  2. #include<cstdlib>      //引入 <標準函式庫> 標頭檔 c standard library
  3. using namespace std;   //指定命名空間為 std
  4. int main()    //主函式  //你要做的事
  5. {
  6.     string name="邵凡榛",school="龍華國小";
  7.     int age=11;
  8.     float h=140,w=26;
  9.    
  10.     cout<<"我的名字:"<<name<<endl;
  11.     cout<<"我的學校:"<<school<<endl;
  12.     cout<<"我的年紀:"<<age<<endl;
  13.     cout<<"我的身高:"<<h<<endl;
  14.     cout<<"我的體重:"<<w<<endl;
  15.    
  16.     //cout輸出  endl換行
  17.     system("pause");       //讓畫面暫停
  18.     return 0;              //回傳0到主控台,告知該程式已成功執行
  19. }
複製代碼

作者: 黃子豪    時間: 2022-11-18 20:11

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main()
  5. {   
  6.     string name = "黃子豪", school = "龍華國小";
  7.     int age = 11;
  8.     float h = 145.5, w = 34.5;
  9.    
  10.     cout<<"我的名子是"<<name<<endl;
  11.     cout<<"我是人,不是貓,也不是狗"<<endl;
  12.     cout<<"我就讀:"<<school<<endl;
  13.     cout<<"今年"<<age<<"歲"<<endl;
  14.     cout<<"身高:"<<h<<"公分"<<endl;
  15.     cout<<"體重:"<<w<<"公斤"<<endl;
  16.     cout<<"(-_-)"<<endl;
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 何權晉    時間: 2022-11-18 20:15

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string city="高雄市";
  7.     int year=2022;
  8.     float c=25.5;
  9.     char D='b',e='#';
  10.     bool f=false,g=true;
  11.    
  12.     cout<<"city是字串變數,他的值是"<<city<<endl;
  13.     cout<<"year是整數變數,他的值是"<<year<<endl;
  14.     cout<<"c是浮點數變數,他的值是"<<c<<endl;
  15.     cout<<"d字元變數,他的值是"<<D<<endl;
  16.     cout<<"e也字元變數,他的值是"<<e<<endl;
  17.     cout<<"f是布林值變數,他的值是"<<f<<endl;
  18.     cout<<"g也是布林值變數,他的值是"<<g<<endl;
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

作者: 張桔熙    時間: 2022-11-18 20:20

  1. #include<iostream>    //引入  <標準函示庫>     標頭檔   input &  output  stream
  2. #include<cstdlib>     //引入  <基本輸入輸出>   標頭檔    c standard  library
  3. using namespace std;  //指定命名空間為    std
  4. int main()   //主函式
  5. {
  6.         string name="張桔熙";
  7.         string school="資培會";
  8.         int age=11;
  9.         float h=153,w=48;
  10.         string a="男";
  11.          
  12.         cout<<"我的名子:"<<name<<endl;
  13.         cout<<"我的性別:"<<a<<endl;
  14.         cout<<"我的學校:"<<school<<endl;
  15.         cout<<"我的年紀:"<<age<<endl;
  16.         cout<<"我的身高:"<<h<<endl;
  17.         cout<<"我的體重:"<<w<<endl;
  18.          
  19.     system("pause");       // 讓畫面暫停
  20.     return 0;             //回傳到主控台,告知該程式已成功執行
  21. }
複製代碼

作者: 呂得銓    時間: 2022-11-18 20:22

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="呂得銓", school= "鹽埕國中";
  7.     int age=12;
  8.     float  h=153 , w=41;
  9.     cout<<"我的名子: "<<name<<endl;
  10.     cout<<"就讀: "<<school<<endl;
  11.     cout<<"今年: "<<age<<" 歲"<<endl;
  12.     cout<<"身高: "<<h<<" 公分"<<endl;
  13.     cout<<"體重: "<<w<<" 公斤"<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }   
複製代碼

作者: 盧玄皓    時間: 2022-11-18 20:23

  1. #include<iostream>  
  2. #include<cstdlib>   
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="盧玄皓",school="明華國中";
  7.     int age=12;  
  8.     float h=158.8,w=47.2;
  9.     cout<<"名字"<<name<<endl;
  10.     cout<<"就讀"<<school<<endl;
  11.     cout<<"歲數"<<age<<"歲"<<endl;
  12.     cout<<"身高"<<h<<"公分"<<endl;
  13.     cout<<"體重"<<w<<"公斤"<<endl;
  14. system("pause");  
  15.     return 0;
  16. }
複製代碼

作者: 張桔熙    時間: 2022-11-18 20:39

  1. #include<iostream>    //引入  <標準函示庫>     標頭檔   input &  output  stream
  2. #include<cstdlib>     //引入  <基本輸入輸出>   標頭檔    c standard  library
  3. using namespace std;  //指定命名空間為    std
  4. int main()   //主函式
  5. {
  6.         string name="張桔熙";
  7.         string school="資培會";
  8.         int age=11;
  9.         float h=153,w=48;
  10.         string a="男";
  11.          
  12.         cout<<"我的名子:"<<name<<endl;
  13.         cout<<"我的性別:"<<a<<endl;
  14.         cout<<"我的學校:"<<school<<endl;
  15.         cout<<"我的年紀:"<<age<<endl;
  16.         cout<<"我的身高:"<<h<<endl;
  17.         cout<<"我的體重:"<<w<<endl;
  18.          
  19.     system("pause");       // 讓畫面暫停
  20.     return 0;             //回傳到主控台,告知該程式已成功執行
  21. }
複製代碼

作者: 呂宗晉    時間: 2022-11-18 20:40

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="黃國穎", school="愛國國小";
  7.     int age=9;
  8.     float h=138.6, w=27.5;
  9.     cout<<"我的大名: "<<name<<endl;
  10.     cout<<"就讀: "<<school<<endl;
  11.     cout<<"今年: "<<age<<" 歲"<<endl;
  12.     cout<<"身高: "<<h<<" 公分"<<endl;
  13.     cout<<"體重: "<<w<<" 公斤"<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2