返回列表 發帖

自我介紹

本帖最後由 tonyh 於 2014-8-16 12:05 編輯
  1. #include<iostream>      //input & output
  2. #include<cstdlib>       //standard liburary
  3. using namespace std;
  4. int main()      //主函式
  5. {
  6.     string name="黃國穎";
  7.     string school="愛國國小";
  8.     int age=9;
  9.     float height=138.6;
  10.     float weight=27.5;
  11.     cout<<"我的大名: "<<name<<endl;
  12.     cout<<"就讀: "<<school<<endl;
  13.     cout<<"今年: "<<age<<" 歲"<<endl;
  14.     cout<<"身高: "<<height<<" 公分"<<endl;
  15.     cout<<"體重: "<<weight<<" 公斤"<<endl;
  16.     system("pause");
  17.     return 0;    //回傳0 告訴電腦本程式已成功結束
  18. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="梁和雋(雋雋)";
  7.     string school="正興國中";
  8.     int age=9;
  9.     float height=174.5;
  10.     string weight="??.?";
  11.     cout<<"我的大名: "<<name<<endl;
  12.     cout<<"就讀: "<<school<<endl;
  13.     cout<<"今年: "<<age<<" 歲"<<endl;
  14.     cout<<"身高: "<<height<<" 公分"<<endl;
  15.     cout<<"體重: "<<weight<<" 公斤"<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

  1. #include<iostream>      
  2. #include<cstdlib>      
  3. using namespace std;
  4. int main()      
  5. {
  6.     string name="洪振庭";
  7.     string school="龍華國小";
  8.     int age=12;
  9.     float height=???;
  10.     float weight=???;
  11.     cout<<"我姓名: "<<name<<endl;
  12.     cout<<"就讀: "<<school<<endl;
  13.     cout<<"今年: "<<age<<" 歲"<<endl;
  14.     cout<<"身高: "<<height<<" 公分"<<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=9;
  9.     float height=137.5;
  10.     float weight=26.5;
  11.     cout<<"我的大名: "<<name<<endl;
  12.     cout<<"就讀: "<<school<<endl;
  13.     cout<<"今年: "<<age<<" 歲"<<endl;
  14.     cout<<"身高: "<<height<<" 公分"<<endl;
  15.     cout<<"體重: "<<weight<<" 公斤"<<endl;  
  16.     system ("pause");
  17.     return 0;
  18. }
複製代碼

TOP

  1. #include<iostream>      //input & output
  2. #include<cstdlib>       //standard liburary
  3. using namespace std;
  4. int main()      //主函式
  5. {
  6.     string name="李大全";
  7.     string school="陽明國小";
  8.     int age=12;
  9.     float height=133.6;
  10.     float weight=30.5;
  11.     cout<<"我的大名: "<<name<<endl;
  12.     cout<<"就讀: "<<school<<endl;
  13.     cout<<"今年: "<<age<<" 歲"<<endl;
  14.     cout<<"身高: "<<height<<" 公分"<<endl;
  15.     cout<<"體重: "<<weight<<" 公斤"<<endl;
  16.     system("pause");
  17.     return 0;    //回傳0 告訴電腦本程式已成功結束
  18. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string name="謝?儀";
  8.     string school="龍華國中";
  9.     int age=-100 ;
  10.     float height=0;
  11.     float weight-111111111111;
  12.     cout<<"我的名:"<<name
  13.         <<"讀"<<school<<
  14.         <<age<<"歲"<<
  15.         <<"體重:" <<"g"
  16.         <<endl;
  17.     system("pause")
  18.     return 0;
  19. }
複製代碼

TOP

返回列表