小数点以下 2 桁までの数の n 乗根を計算するプログラムを作成しました。たとえば、81 の 4 乗根は 3 です。125 の 3 乗根は 5 です。4 の 2 乗根を除いて、うまく機能します。出力は 2 ではなく 1.99 になります。コードは次のとおりです。
#include<stdio.h>
int main(int argc, char **argv)
{
double root1(int,int);
int n;
int num1;
double root;
printf("\n\n-----------This is the programme to find the nth root of a number-----------\n\n");
printf("Enter a nuber greater then 1 : ");
scanf("%d",&num1);
if(num1>1)
{
printf("Enter the value for 'n'(the root to be calculated) : ");
scanf("%d",&n);
root = root1(num1,n);
printf("%d th Root of %d is %f\n\n", n,num1,root);
}
else
printf("wrong entry");
return 0;
}
double root1(int a, int b)
{
int j;
double i,k;
double incre = 0.01;
for(i=1; i<=a; i = i+incre)
{
for(j=0;j<b;j++)
{
k=k*i;
}
if(a<k)
{
return(i-incre);
break;
}
else
k=1;
}
}
何時間も試しましたが、修正できません。誰でもこれをデバッグできますか?? とても感謝しています。