返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int a = 55;
  7.         float b =159.6;
  8.         char c = 'z';
  9.         string d = "hello";
  10.        
  11.         cout << "a=" << a << endl;               
  12.         cout << "b=" << b << endl;
  13.         cout << "c=" << c << endl;
  14.         cout << "d=" << d << endl;
  15.         system("pause");
  16.         return 0;
  17. }
複製代碼

TOP

返回列表