返回列表 發帖
  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.        
  16.        
  17.         system("pause");
  18.         return 0;
  19. }
複製代碼

TOP

返回列表