程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> c語言-C語言簡單程序調試問題

c語言-C語言簡單程序調試問題

編輯:編程解疑
C語言簡單程序調試問題

這是源碼:

#include
#include

int main()
{
double x,y,z,i;
for(x = 1;x<100000;x++)
{

y = sqrt(x+100);

z = sqrt(x+268);

if((y*y == x+100)&&(z*z == x+268))
{
printf("%lf\n",x);
}
}

return 0;

}

不知道問題出在哪裡?麻煩解答一下。
另,為什麼知道設定的數值范圍是1-10萬,這個是不一定的?
再另,表示對for裡面的不太理解

PS,題目:一個整數,它加上100後是一個完全平方數,
再加上168又是一個完全平方數,請問該數是多少?

最佳回答:


 #include<stdio.h>
#include<math.h> 

int main()
{
    int x = 0;
    while (true)
    {
        if (((int)sqrt(x + 100) * (int)sqrt(x + 100) == x + 100)
            && ((int)sqrt(x + 168) * (int)sqrt(x + 168) == x + 168))
        {
            printf("%d\n", x);
            break;
        }
        x++;
    }
    return 0;   
} 
lcm_zg
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved