一个账号 发表于 2020-3-2 19:45:46

C++ 赋值的几种方式

#include <iostream>

using namespace std;

int main()
{
        int a=0, b(1), c{2}, d={3}, e=(4);
       
        cout << a << b << c << d << e << endl;
       
        return 0;
}
页: [1]
查看完整版本: C++ 赋值的几种方式