> 官方微信2133688724 > 开始编译 > 编译失败/storage/emulated/0/Code/Project/CPlusPlus/c2/main.cpp: In function 'int main()': /storage/emulated/0/Code/Project/CPlusPlus/c2/main.cpp:10:5: error: 'b' was not declared in this scope b=j/10; ^ compilation terminated due to -Wfatal-errors.
时间: 2023-05-26 12:07:16 浏览: 240
UC-OS-II.rar_uC/OSII
这是一条编译错误信息,意思是在代码中第10行的变量'b'未被声明,在第10行中赋值操作出现了错误。提示建议使用'-Wfatal-errors'选项终止编译过程,以避免出现更多的错误。建议检查代码,声明变量'b',并检查赋值操作是否正确。
阅读全文