#include <iostream>
#include <iomanip>
#include <stdlib.h>
using namespace std;
struct twoVals
{
int x;
double y;
} number;
int main()
{
number.x = 10;
number.y = 20;
twoVals vals;
cout << vals << endl;
return 0;
}
第19行:错误:&#39;运营商&lt;&lt;&lt;&# in&#39; std :: cout&lt;&lt;瓦尔斯&#39; 由于-Wfatal-errors导致编译终止。
这是我得到的错误。我该如何解决?我的代码还有什么问题吗?举例说明。