本帖最後由 許婷芳 於 2019-9-21 11:58 編輯
試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- { //變數
- string name="王小明", school="愛國國小"; //名字和學校是字串
- int age=9; // 9是整數
- float h=138.6f, w=27.5f; //身高和體重都有小數點
- cout<<"我的大名:"<<name<<endl;
- cout<<"就讀:"<<school<<endl;
- cout<<"今年:"<<age<<"歲"<<endl;
- cout<<"身高:"<<h<<"公分"<<endl;
- cout<<"體重:"<<w<<"公斤"<<endl;
- system("pause");
- return 0;
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽 |