程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c語言-控制台 無輸出 但是兩個輸入都正常

c語言-控制台 無輸出 但是兩個輸入都正常

編輯:編程綜合問答
控制台 無輸出 但是兩個輸入都正常

求助

```// 此程序求絕對值

float absolutevalue (float x)
{
if ( x < 0)
x = -x;

return x;

}

//此程序求squreRoot 中 while 循環次數

int times (float esplion){
int i;
while (esplion != 1) {
esplion *= 10;
i ++;
}
return i;
}

//此程序求平方根
float squreRoot (float x, float esplion)
{
float guess = 1.0;

while (absolutevalue (guess*guess - x) >= esplion )
    {
    int i;
     for ( i = 0; i<= times(esplion); i++)
 {  
     guess = (x/guess + guess)/2.0;
     printf ("The guess is %f.\n", guess);
 }
}

return guess; 

}

int main ()
{
printf ("Enter you number : \n");

float x, esplion ;  

scanf ("%f", &x);

printf ("Enter you esplion: \n");

scanf ("%f", &esplion);

printf ("The squreroot of the %f is %f", x, squreRoot (x, esplion));

return 0; 

}


最佳回答:


squreRoot 效率很低,times(esplion)只需要調用一次
esplion取值不當的話,times方法的實現會導致死循環

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved