返回列表 發帖
  1. #include<iostream>    //引入  <標準函示庫>     標頭檔   input &  output  stream
  2. #include<cstdlib>     //引入  <基本輸入輸出>   標頭檔    c standard  library
  3. using namespace std;  //指定命名空間為    std
  4. int main()   //主函式
  5. {
  6.         string name="張桔熙";
  7.         string school="資培會";
  8.         int age=11;
  9.         float h=153,w=48;
  10.         string a="男";
  11.          
  12.         cout<<"我的名子:"<<name<<endl;
  13.         cout<<"我的性別:"<<a<<endl;
  14.         cout<<"我的學校:"<<school<<endl;
  15.         cout<<"我的年紀:"<<age<<endl;
  16.         cout<<"我的身高:"<<h<<endl;
  17.         cout<<"我的體重:"<<w<<endl;
  18.          
  19.     system("pause");       // 讓畫面暫停
  20.     return 0;             //回傳到主控台,告知該程式已成功執行
  21. }
複製代碼

TOP

  1. #include<iostream>    //引入  <標準函示庫>     標頭檔   input &  output  stream
  2. #include<cstdlib>     //引入  <基本輸入輸出>   標頭檔    c standard  library
  3. using namespace std;  //指定命名空間為    std
  4. int main()   //主函式
  5. {
  6.         string name="張桔熙";
  7.         string school="資培會";
  8.         int age=11;
  9.         float h=153,w=48;
  10.         string a="男";
  11.          
  12.         cout<<"我的名子:"<<name<<endl;
  13.         cout<<"我的性別:"<<a<<endl;
  14.         cout<<"我的學校:"<<school<<endl;
  15.         cout<<"我的年紀:"<<age<<endl;
  16.         cout<<"我的身高:"<<h<<endl;
  17.         cout<<"我的體重:"<<w<<endl;
  18.          
  19.     system("pause");       // 讓畫面暫停
  20.     return 0;             //回傳到主控台,告知該程式已成功執行
  21. }
複製代碼

TOP

返回列表