标签:出现 not 编译 scope 输出 语句 err 编译错误 declared
1, [Error] ‘cout‘ does not name a type
这个的原因是"cout<<..."这行语句没有放到主函数里,也就是不在花括号里面,我多写了个花括号。
2, [Error] ‘cnt‘ was not declared in this scope
这个是你在循环里定义了一个比如cnt的东西,比如用来计数。
最后输出cnt会出现这个错误。。
所以说你定义要定义到外面。
标签:出现 not 编译 scope 输出 语句 err 编译错误 declared
原文地址:https://www.cnblogs.com/beiyueya/p/11517037.html