我使用g ++编译了此代码,但出现了错误:
#include<iostream>
using namespace std;
int main()
{
int j{ 0 };
cout << "j = " << j << endl;
return 0;
}
这是错误:
error: expected ';' at end of declaration
int j{ 0 };
^
;
1 error generated.
答案 0 :(得分:1)