我的代码丢失了什么。不匹配'运营商<<' in' std :: cout<<瓦尔斯'

时间:2015-07-02 04:40:49

标签: c++

#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导致编译终止。

这是我得到的错误。我该如何解决?我的代码还有什么问题吗?举例说明。

0 个答案:

没有答案