返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     string name= "Justin H", school= "I-shou international school";
  7.     float height=185.0, weight=63.0;
  8.     int age=14;
  9.     char n='#';
  10.     bool d=false;
  11.     string intrests="Motorsports";
  12.     cout<<"Name: "<<name<<endl;
  13.     cout<<"School: "<<school<<endl;
  14.     cout<<"Height: "<<height<<endl;
  15.     cout<<"Weight: "<<weight<<endl;
  16.     cout<<"Age: "<<age<<endl;
  17.     cout<<"Intrests: "<<intrests<<endl;
  18.     cout<<"My nickname: "<<n<<endl;
  19.     cout<<"布林值d是多少? "<<d<<endl;
  20.     system ("pause");
  21.     return 0;
  22. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string city="高雄市";
  7.     int year=2022;
  8.     float c=25.5;
  9.     char D='b',e='#';
  10.     bool f=false,g=true;
  11.    
  12.     cout<<"city是字串變數,他的值是"<<city<<endl;
  13.     cout<<"year是整數變數,他的值是"<<year<<endl;
  14.     cout<<"c是浮點數變數,他的值是"<<c<<endl;
  15.     cout<<"d字元變數,他的值是"<<D<<endl;
  16.     cout<<"e也字元變數,他的值是"<<e<<endl;
  17.     cout<<"f是布林值變數,他的值是"<<f<<endl;
  18.     cout<<"g也是布林值變數,他的值是"<<g<<endl;
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

返回列表