返回列表 發帖

自我介紹

本帖最後由 張翼安 於 2015-9-4 22:46 編輯

試宣告五個變數來裝你的個人資料, 分別為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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 張翼安 於 2015-9-12 11:41 編輯
  1. #include<iostream>
  2. #include<cstdilb>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="張健勳";
  7.   string school="五福國中";
  8.     int age=9;
  9.     float height=161.5;
  10.     float weight=50.6;
  11.     cout<<"俺的大名:"<<name<<endl;
  12.     cout<<"就讀:"<<school<<endl;
  13.     cout<<"今年"<<age<<"歲"<<endl;
  14.     cout<<"身高:"<<heigt<<"公分"<<endl;
  15.     cout<<"體重:"<<weight<<"公斤"<<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 = 11;
  9.     float h = 150.4, w = 43.0;
  10.     cout << "我的大名:" << name << endl;
  11.     cout << "就讀:" << school << endl;
  12.     cout << "今年:" << age << "歲" << endl;
  13.     cout << "身高:" << h << "公分" << endl;
  14.     cout << "體重:" << w << "公斤" << endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

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=140.0, w=28.0;
  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

本帖最後由 tonyh 於 2015-9-29 17:02 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         string name="frank",school="福山國中";
  7.         int age=12;
  8.         float h=160.1,w=57.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 = "leo";
  7.         string schoo = "勝利國小" ;
  8.         int ago = 11 ;
  9.         float height=153.0;
  10.     float weight=40.0;

  11.     cout<<"我的大名"<<name<<endl;
  12.     cout<<"就讀國小"<<schoo<<endl;
  13.     cout<<"身高"<< height<<"公分"<<endl;
  14.         cout<<"體重"<<weight<<"公斤"<<endl;
  15.         system("pause");
  16.         return 0;
  17. }
複製代碼

TOP

返回列表