開發平台(Platform): (Ex: Win10, Linux, ...)
WIN10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
VS2015
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
各位前輩好
小弟在做平方根時(只需要取整數部分ex:輸入8,得到2)
發現數字變大後會出現錯誤的輸出
不知道是不是程式有欠缺考慮的部分
餵入的資料(Input):
2147395600
預期的正確結果(Expected Output):
46340
錯誤結果(Wrong Output):
289398
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
int mySqrt(int x) {
int num = 1;
int sqt = 1;
while (x >= sqt)
{
num ++;
sqt = num * num;
}
return num-1;
}
補充說明(Supplement):