12 - 【出现问题时请关注】常见c++报错原因分析

通过次数

0

提交次数

163

Time Limit : 1 秒
Memory Limit : 128 MB

1.关于编译报错:

[Error] 'xxx' was not declared in this scope
【错误】'xxx'在此范围内未被声明或者缺乏所属头文件	

[Error] expected 'ooo' before 'xxx' token
【错误】期望有个'ooo'在'xxx'之前

[Error] ld returned 1 exit status
【错误】程序运行中需要关闭控制台再次运行或者main函数拼错

2.关于运行时出错:

return value 255:当0作为除数

return value 3221225620:运行时出现错误

return value 3221225477:访问越界

return value 3221225725:一般是无穷递归或空间太大

Input

Output

Examples

Input


                            

Output


                            

Source

笔记