返回列表 發帖

自我介紹2

本帖最後由 許婷芳 於 2019-9-21 11:58 編輯

試宣告五個變數來裝你的個人資料, 分別為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;   // 9是整數
  8.     float h=138.6f, w=27.5f;  //身高和體重都有小數點
  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. {         
  6.     string name="龔品誠", school="七賢國中";  
  7.     int age=12;   
  8.     float h=160.8, w=52.8f;
  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=152.6f, w=60.5f;  
  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

本帖最後由 王銘鴻 於 2019-9-27 21:20 編輯

#include<iostream>
#include<cstdlib>
using namespace        std;

int        main()
{
    string name="王銘鴻",o="烏林國小";
    int i=9;   
    float h=135.6f, w=25.6f;
     cout<<"我的大名:"<<name<<endl;
     cout<<"就讀"<<o<<endl;
     cout<<"今年"<<i<<"歲"<<endl;
     cout<<"身高"<<h<<endl;
     cout<<"體重"<<w<<endl;  
        system("pause");
                return 0;
}

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=132.6f, w=27.6f;
  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 n="李穎俊",s="福山國小";
  7.     int k=10;
  8.     float t=49.2,c=15.5;
  9.     cout<<"我的大名:"<<n<<endl;
  10.     cout<<"就讀:"<<s<<endl;
  11.     cout<<"今年:"<<k<<"歲"<<endl;
  12.     cout<<"升高:"<<c<<"公分"<<endl;
  13.     cout<<"體重:"<<t<<"公斤"<<endl;
  14.    
  15.    
  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. { string name="朱閎聿", school="明華國中";  //名字和學校是字串
  6.     int age=12;   // 12是整數
  7.     float h=152.9f, w=53.5f;  //身高和體重都有小數點
  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;              //回傳0到主控台,告知該程式已成功執行
  15. }
複製代碼

TOP

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

  4. int main()
  5. {
  6.    string m="林羿丞",s="勝利國小";
  7.    int a=9;
  8.    float b=140.1f,c=33.5f;
  9.    cout<<"我的大名:"<<m<<endl;
  10.    cout<<"就讀:"<<s<<endl;
  11.    cout<<"今年:"<<a<<"歲"<<endl;
  12.    cout<<"身高:"<<b<<"公分"<<endl;
  13.    cout<<"體重:"<<c<<"公斤"<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表