返回列表 發帖

自我介紹

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

本帖隱藏的內容需要回復才可以瀏覽

  1. #include<iostream>
  2. #include<cstdlib>   
  3. using namespace std;
  4. int main()   
  5. {
  6.     //有兩個空的盒子 存放文字(字串)string
  7.     string name="黃國穎";//姓名
  8.     string school="愛國國小";//學校
  9.    
  10.    
  11.     //有一個空的盒子 存放整數 int
  12.     int age=9;//年紀
  13.    
  14.     //有兩個空的盒子 存放小數點(浮點數)
  15.     float h=138.6;//身高
  16.     float w=27.5; //體重
  17.    
  18.      
  19.     cout<<"我的大名:"<<name<<endl;
  20.     cout<<"就讀:"<<school<<endl;
  21.     cout<<"今年: "<<age<<"歲"<<endl;
  22.     cout<<"身高: "<<h<<"cm"<<endl;
  23.     cout<<"體重: "<<w<<"kg"<<endl;
  24.    
  25.    
  26.     system("pause");      
  27.     return 0;        
  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     string name="吳侑諶";
  7.     string school="新光國小";
  8.     int age=11;
  9.     float h=144.3;
  10.     float w=32.4;
  11.     cout<<"我的大名:"<<name<<endl;
  12.     cout<<"就讀:"<<school<<endl;
  13.     cout<<"年齡:"<<age<<"歲"<<endl;
  14.     cout<<"身高:"<<h<<"cm"<<endl;
  15.     cout<<"體重:"<<w<<"kg"<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

  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 ="尤爾帆";
  8.     string school= "瑞興國小";
  9.     int age =9;
  10.     float h= 142;
  11.     float w=32.3;
  12.     cout<<"我的大名:"<<name<<endl;
  13.     cout<<"就讀:"<<school<<endl;
  14.     cout<<"今年:"<<age<<"歲"<<endl;
  15.     cout<<"身高:"<<h<<"cm"<<endl;
  16.     cout<<"體重:"<<w<<"kg"<<endl;
  17.    
  18.     system("pause");       //讓畫面暫停
  19.     return 0;              //回傳0到主控台,告知該程式已成功執行
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     string name="尤爾璿";
  7.     string school="瑞興國小";
  8.     int age=11;
  9.     float h=152.1;
  10.     float w=32.2 ;
  11.     cout<<"我的大名:"<<name<<endl;
  12.     cout<<"就讀:"<<school<<endl;
  13.     cout<<"今年:"<<age<<"歲"<<endl;
  14.     cout<<"身高:"<<h<<"cm"<<endl;
  15.     cout<<"體重:"<<w<<"kg"<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="王宥凱";
  7.     string school="鳳新高中";
  8.     int age=15;
  9.     float height=178.2;
  10.     float weight=50.0;
  11.     cout<<"我的大名:"<<name<<endl;
  12.     cout<<"學校:"<<school<<endl;
  13.     cout<<"年齡:"<<age<<"歲"<<endl;
  14.     cout<<"身高:"<<height<<"cm"<<endl;
  15.     cout<<"體重:"<<weight<<"kg"<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="賴聿均";
  7.     string sch="南成國小";
  8.     int age=11;
  9.     float h=144.6;
  10.     float w=36.1;
  11.     cout<<"我的大名:"<<name<<endl;
  12.     cout<<"就讀"<<sch<<endl;
  13.     cout<<"我"<<age<<"歲"<<endl;
  14.     cout<<"我"<<h<<"公分"<<endl;
  15.     cout<<"我"<<w<<"公斤"<<endl;
  16.     system("pause");
  17.     return 0;  
  18. }
複製代碼

TOP

本帖最後由 蘇允翎 於 2021-10-19 17:12 編輯
  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.5,w=25.7;
  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

返回列表