開發平台(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):
麻煩各位前輩指教,謝謝。