返回列表 發帖

自我介紹

本帖最後由 鄭繼威 於 2022-5-18 19:34 編輯

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

試宣告五個變數來裝你的個人資料, 分別為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. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main(){
  5.     string name="鄭繼威",school="某某大學";
  6.     int age=30;
  7.     float h=180.6,w=56.5;
  8.     //宣告變數  ->  變數型態 變數名字=賦予值
  9.     //變數 -> 盒子
  10.    
  11.     cout<<"我的名字:"<<"name"<<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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="黃柏青",school="立志中學";
  7.     int age=14;
  8.     float h=165.8,w=76.3;
  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. }
複製代碼

TOP

  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=140.1, w=38.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. }
複製代碼

TOP

本帖最後由 李彣 於 2022-4-6 20:50 編輯
  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=136.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. }
複製代碼

TOP

  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= 130.9   , w=27.9  ;
  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.     }
複製代碼

TOP

  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. }
複製代碼

TOP

  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=140.1, w=38.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. }
複製代碼

TOP

  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.1, w=38.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. }
複製代碼

TOP

本帖最後由 黃裕恩 於 2022-3-13 21:48 編輯
  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.5, w=34.6;
  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. }
複製代碼

TOP

本帖最後由 鄭繼威 於 2022-3-28 19:18 編輯
  1. #include<iostream>  //引入基本輸入輸出函式庫
  2. #include<cstdlib>   //引入C Standard Libary標準函式庫
  3. using namespace std;    //指定命名空間為std

  4. //主函式
  5. int main()
  6. {
  7.     //你要做的事
  8.    
  9.     //宣告變數
  10.     //變數型態 變數名字=賦予值
  11.     string name="正小威", school="資培會";
  12.    
  13.     //第一種方式
  14.     //string name="正小威", school="資培會";
  15.    
  16.     //第二種方式
  17.     //string name="正小威";
  18.     //string shool="資培會";
  19.    
  20.     int age=25;
  21.     float h=180.6, w=56.9;
  22.     //宣告5個變數(盒子)
  23.    
  24.     //cout輸出 <<串接符號(方法.字串.變數要一起使用時或是接在一起的時候)要記得加
  25.     //endl 結束並換行  ;這行指令結束
  26.    
  27.     cout<<"我的名字:"<<name<<endl;
  28.     cout<<"我的學校:"<<school<<endl;
  29.     cout<<"我的年紀:"<<age<<endl;
  30.     cout<<"我的身高:"<<h<<endl;
  31.     cout<<"我的體重:"<<w<<endl;
  32.    
  33.     //註解(給人看的不是給電腦看的)
  34.     system("pause");     //讓黑色畫面暫停
  35.     return 0;    //告知主程式完成
  36. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="林劭杰", school="師大附小";
  7.     int age=10;
  8.     float h=135, w=36;
  9.    
  10.    
  11.    
  12.     cout<<"我的大名: "<<name<<endl;
  13.     cout<<"就讀: "<<school<<endl;
  14.     cout<<"今年: "<<age<<" 歲"<<endl;
  15.     cout<<"身高: "<<h<<" 公分"<<endl;
  16.     cout<<"體重: "<<w<<" 公斤"<<endl;
  17.    

  18.   



  19. system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

本帖最後由 鄭繼威 於 2022-3-21 20:27 編輯
  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=142.2,w=32;
  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. }
  17.    
  18.   
  19.    
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     string name="李睿宸",school="鳳山高中";
  7.     int age=17;
  8.     float h=176,w=53;
  9.     cout<<"我的名字:"<<name<<endl;
  10.     cout<<"就讀:"<<school<<endl;
  11.     cout<<"今年:"<<age<<"歲"<<endl;
  12.     cout<<"身高:"<<h<<"cm"<<endl;
  13.     cout<<"體重:"<<w<<"kg"<<endl;

  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

返回列表