返回列表 發帖
  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

返回列表