返回列表 發帖

個人小檔案

程式執行後顯示下列內容:
我的名字是 : 游東祥
我的生日是 : 7/25
我的身高是 : 168.5
我的體重是 : 65.7


----------------------------------
宣告四個變數
名字、生日為字元陣列
身高、體重為浮點數

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char myName [7] = "謝典育";
  7.     cout <<"我的名字是:"<< myName << endl;
  8.     char birthday [6] = "12/24";
  9.     cout <<"我的生日是:"<< birthday << endl;
  10.     char height [6] = "150.7";
  11.     cout <<"我的身高是:"<< height << endl;
  12.     char kg [5] = "78.6";
  13.     cout <<"我的體重是:"<< kg << endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     char myName[9]="嵐雲道人"
  8.     cout<<"我的名字是:"<<myName<<endl;
  9.     char birthday[6]="11/1";
  10.     cout<<"我的生日是:"<<birthday<<endl;
  11.     float height=162.5;
  12.     cout<<"我的身高是:" <<height<<endl;
  13.     float weight=60.2;
  14.     cout<<"我的體重是:"<<weight<<endl;
  15. system ("pause")
  16. return 0;   
  17.    
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     char myName[9]="海綿寶寶";
  8.     cout<<"我的名字是:"<<myName<<endl;
  9.     char birthday[6]="9/26";
  10.     cout<<"我的生日是:"<<birthday<<endl;
  11.     float height=137.4;
  12.     cout<<"我的身高是:" <<height<<endl;
  13.     float weight=32.7;
  14.     cout<<"我的體重是:"<<weight<<endl;
  15. system ("pause");
  16. return 0;   
  17.    
  18. }
複製代碼

TOP

本帖最後由 張郁庭 於 2013-10-12 16:42 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main ()
  5. {
  6.       char myName [7] = "張郁庭";
  7.       cout << "我的名字是:" << myName << endl;
  8.       char birthday [6] = "10/26";
  9.       cout << "我的生日是:" << birthday << endl;
  10.       float height =180.5;
  11.       cout << "我的身高是:" << height << endl;
  12.       float weight = 30.5;
  13.       cout << "我的體重是:" << weight << endl;
  14.     system ("pause");
  15.     return 0;
  16. }
  17.         
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     char myname [7]="張郁偵";
  7.     cout <<"我的名字是:" << myname <<endl;
  8.     cout <<"我的生日是:10/8日"<<endl;
  9.     float h = 167.3;
  10.     cout<<"我的名字是:"<< h <<"公分" <<endl;
  11.     float w = 45.5;
  12.     cout<<"我的體重是:"<< w <<"公斤" <<endl;
  13.     system("pause");
  14.     return 0;   
  15.    
  16. }
複製代碼

TOP

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

  4. int main ()
  5. {
  6.     char myName[7] = "周雍程";
  7.     cout << "我的名字是:" << myName << endl;
  8.     char birthday[6] =  "12/13";
  9.     cout << "我的生日是:" << birthday << endl;
  10.     float height = 135.6;
  11.     cout << "我的身高是:" << height << "公分" << endl;
  12.     char kg[5] = "33.4";
  13.     cout << "我的體重是:" << kg << "公斤" << endl;
  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char myName [7] = "施伯叡";
  7.     cout <<"我的名字叫 : "<< myName << endl;
  8.    
  9.     char birthday [6] = "06/11";
  10.     cout <<"我的生日是 : "<< birthday << endl;
  11.    
  12.     float height = 138.6;
  13.     cout <<"我的身高是 : "<< height << endl;
  14.    
  15.     float kg = 37.9;
  16.     cout <<"我的體重是 : "<< kg << endl;
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

返回列表