Board logo

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

作者: 鄭繼威    時間: 2022-7-16 01:23     標題: 自我介紹

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

試宣告五個變數來裝你的個人資料, 分別為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-7-16 15:22

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

作者: 鄭繼威    時間: 2022-7-16 15:26

  1. #include<iostream>//引入基本輸入輸出函式庫
  2. #include<cstdlib>
  3. using namespace std;

  4. int main(){
  5. //        ...
  6. //int 整數 ex:1 2 3 ....
  7. //float 浮點數(小數) ex:1.2 2.3 3.5 3.14
  8. //string 字串 ex:"apple","bee","cat"
  9. //char 字元 ex:'a','p','p','l','e'
  10. //bool 布林 ex:0(false),1(true)
  11. //        變數型態 變數名字=賦予值
  12. //        string name="鄭繼威";
  13. //        string school="資培會";
  14.        
  15.         string name="鄭繼威",school="資培會";
  16.         int age=25;
  17.         float h=180,w=60;
  18.         //cout<< 輸出 cin輸入>>
  19.         cout<<"我的大名:"<<name<<endl;
  20.         cout<<"我的學校:"<<school<<endl;
  21.         cout<<"我的年紀:"<<age<<endl;
  22.         cout<<"我的身高:"<<h<<"cm"<<endl;
  23.         cout<<"我的體重:"<<w<<"kg"<<endl;
  24.        
  25.         system("pause");
  26.         return 0;
  27. }
複製代碼

作者: 宜儒    時間: 2022-7-16 15:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     string name="余宜儒",school="五福國中";
  6.     int age=15;
  7.     float H=162,W=46;
  8.     cout<<"我的名字:"<<name<<endl;
  9.     cout<<"就讀:"<<school<<endl;
  10.     cout<<"今年:"<<age<<"歲"<<endl;
  11.     cout<<"身高:"<<H<<"cm"<<endl;
  12.     cout<<"體重:"<<W<<"kg"<<endl;   
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 林雋喆    時間: 2022-7-16 15:26

  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=163.5,w=46.9;   
  9. cout<<"我的名子:"<<name<<endl;
  10. cout<<"我的學校:"<<school<<endl;   
  11. cout<<"今年"<<age<<"歲"<<endl;   
  12. cout<<"身高"<<h<<"cm"<<endl;
  13. cout<<"體重"<<w<<"kg"<<endl;   
  14. system ("pause");
  15. return 0;
  16. }
複製代碼

作者: 羅紹齊    時間: 2022-7-16 15:27

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

  4. int main(){
  5.     string name="羅紹齊",school="高雄高工";
  6.     string age="16歲";
  7.     string height="177.3公分",weight="74.6公斤";  
  8.     cout<<"我叫做"<<name<<endl;
  9.     cout<<"我就讀"<<school<<endl;
  10.     cout<<"我今年"<<age<<endl;
  11.     cout<<"我身高"<<height<<endl;
  12.     cout<<"我體重"<<weight<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 羅暐傑    時間: 2022-7-16 15:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     string name="羅暐傑", school="高雄美國學校";
  6.     int age=13;
  7.     float height= 172.7, weight=57;
  8.     cout<<"我的大名: "<<name<<endl;
  9.     cout<<"就讀: "<<school<<endl;
  10.     cout<<"今年: "<<age<<"歲"<<endl;
  11.     cout<<"身高: "<<height<<"公分"<<endl;
  12.     cout<<"體重: "<<weight<<"公斤"<<endl;
  13.     system("pause");
  14.     return 0;
  15.     }
複製代碼

作者: 陳宥霖    時間: 2022-7-16 15:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="陳宥霖",school="國昌國中";
  7.     int age=13;
  8.     float h=171,w=57;
  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-7-16 15:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name = "楊芊琦";
  7.     string school = "獅湖國小";
  8.     string idkn = "不知道";
  9.     int age = 12;
  10.     cout<<"我的大名:"<<name<<endl;
  11.     cout<<"就讀學校:"<<school<<endl;
  12.     cout<<"今年:"<<age<<"歲"<<endl;
  13.     cout<<"身高:"<<idkn<<"公分"<<endl;
  14.     cout<<"體重:"<<idkn<<"公斤"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 葉佳和    時間: 2022-7-16 15:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. string name="葉佳和",school="福山國中" ;
  7. int age=13;
  8. float h=175.3, w=62.1;
  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-7-16 15:27

  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=140.3,w=31.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-7-16 15:28

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

作者: 翁川祐    時間: 2022-7-16 15:28

本帖最後由 翁川祐 於 2022-7-16 15:29 編輯
  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=162.2,w=45.7;
  9.    
  10.    cout<<"我的大名:"<<name<<endl;
  11.    cout<<"就讀:"<<school<<endl;
  12.    cout<<"今年"<<age<<"歲"<<endl;
  13.    cout<<"身高:"<<h<<"公分"<<endl;
  14.    cout<<"體重:"<<w<<"公斤"<<endl;
  15.    
  16.    system("pause");
  17.    return 0;
  18. }
複製代碼

作者: 鍾瑄羽    時間: 2022-7-16 15:29

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

作者: 盧禹丞    時間: 2022-7-16 15:30

回復 1# 鄭繼威


    #include<iostream>
#include<cstdlib>
using namespase std;
int main()
{
    string name
    int age=9;
    float h=138.6, w=27.5;
    cont<<"我的大名: "<<name<<endl;
    cont<<"就讀: <<school<<endl;[code][/code]
作者: 王睿荻    時間: 2022-7-16 15:31

  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=152.6,w=40;
  9.     cout<<"我的名字:"<<name<<endl;
  10.     cout<<"就讀學校:"<<school<<endl;
  11.     cout<<"年齡:"<<age<<"    (再一個月就13)"<<endl;
  12.     cout<<"身高:"<<h<<"公分"<<endl;
  13.     cout<<"體重:"<<w<<"公斤重"<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
  17.       
複製代碼





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