编译错误总结。
1, [Error] 'cout' does not name a type
这个的原因是"cout<<..."这行语句没有放到主函数里,也就是不在花括号里面,我多写了个花括号。
2, [Error] 'cnt' was not declared in this scope
这个是你在循环里定义了一个比如cnt的东西,比如用来计数。
最后输出cnt会出现这个错误。。
所以说你定义要定义到外面。
3, [Error] invalid types 'int[int]' for array subscript
命名重复了。
4 [Error] reference to 'right' is ambiguous
原因:自定义的left 变量与库中重名;
解决:修改一下变量名
5, [Error] ld returned 1 exit status
一,黑框已经出现了,你没有看见。