开发平台(Platform): (Ex: Win10, Linux, ...)
Win10
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
DEV-C++
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
N/A
问题(Question):
在 if(6 == 7)时不成立会跳到else
所以在印出z值时应该是z=3,但用DEV-C++执行时,程式会印出1
喂入的资料(Input):
N/A
预期的正确结果(Expected Output):
3
错误结果(Wrong Output):
1
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
int z = 1;
if(6 == 7)
if( 8 == 8)
z = 2;
else
z = 3;
std::cout << z << std:endl;
补充说明(Supplement):
麻烦各位前辈指教,谢谢。