開發平台(Platform): (Ex: Win10, Linux, ...)
win10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
onlineGDB
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
印出問題
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
#include <stdio.h>
int main()
{
int n = 0;
if(n = 0) n=1;
else if(n=1) n=2;
else if(n=2) n=3;
else if(n=3) n=4;
printf("n = %d", n);
return 0;
}
補充說明(Supplement):
照著課本上的題目寫
課本答案輸出為 1
但是測試後輸出為2
請教另一位中央資工所同學也表示很納悶
他也認為答案是1
跪求版上碼農大大開示 還是課本答案錯了?
(標題不太清楚怎麼描述比較好)