返回列表 發帖

個人小檔案 (二)

請將名字與生日的變數型態設為字元陣列,
身高設為整數, 體重設為浮點數.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char name[]="黃國穎";
  7.     char birthday[]="1979/03/26";
  8.     int height=170;
  9.     float weight=64.2;
  10.     cout<<"我的名字是: "<<name<<endl;
  11.     cout<<"我的生日是: "<<birthday<<endl;
  12.     cout<<"我的身高是: "<<height<<endl;
  13.     cout<<"我的體重是: "<<weight<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char myName [] = "施伯叡";
  7.     char birthday [] = "06/11";
  8.     int height = 139;
  9.     float weight = 37.9;

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

TOP

本帖最後由 周雍程 於 2013-10-12 16:51 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     char name[7] = "周雍程";
  7.     char dob[6] = "12/13";
  8.     float height = 135.6;
  9.     float weight = 33.4;
  10.     cout << "我的名字是:" << name << endl;
  11.     cout << "我的生日是:" << dob << endl;
  12.     cout << "我的身高是:" << height << "公分" << endl;
  13.     cout << "我的體重是:" << weight << "公斤" << 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[]="海綿寶寶";
  8.     cout<<"我的名字是:"<<myName<<endl;
  9.     char birthday[]="9/26";
  10.     cout<<"我的生日是:"<<birthday<<endl;
  11.     int height=137;
  12.     cout<<"我的身高是:" <<height<<endl;
  13.     float weight=32.7;
  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.    char n [7] =  "張郁偵";
  7.    char b [5] =  "10/8";
  8.    float h= 167.3;
  9.    float w= 45;
  10.    cout << "我的名字是:" << n << endl;
  11.    cout << "我的生日是:" << b << 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.     char Name[]="笑書神俠";
  7.     char dob []="2000/11/1";
  8.     int height=162.5;
  9.     float weight=59.5;
  10.     cout<<"my name is:"<<Name<<endl;
  11.     cout<<"my birthday is:"<<dob<<endl;
  12.     cout<<"my height is:"<<height<<endl;
  13.     cout<<"my weight is:"<<weight<<endl;
  14.      
  15. system("pause");
  16. return 0;   
  17. }
複製代碼

TOP

返回列表