問題一:
#include
double power (double n,int p);
int main (void)
{
double x,xpow;
int exp;
printf("Enter a number and the positive integer power");
printf("to which will be raised . enter q");
printf("to quit.\n");
while (scanf("%1f%d",&x,&exp)==2)
{
xpow=power(x,exp);
printf("%.3g to the power %d is %.5g\n",x,exp,xpow);
printf("enter next pair of numbers or q to quit. \n");
}
printf("HOPE you enjoy this power trip --bye!\n");
return 0;
}
double power (double n,int p)
{
double pow=1;
int i;
for (i=1;i<=p;i++)
pow*=n;
return pow;
}
1)這個程序是《c primer plus》書上的一個例子,但是並不能計算出浮點數的整數次方,想了一天也沒有看出是哪裡的問題,若把double 換成float ,可以計算整數的整數次冪,還是計算不了浮點數的整數次方,這是為什麼啊?
2)聲明一下,用的是visual studio 編譯器。
問題二:
#include
int main(void)
{
double num;
printf("please enter the number:\n");
scanf("%f",&num);
printf("your enter number is %f",num);
return 0;
}
這個程序輸入num=1.2時,為什麼不能打印出1.2,而是與之完全不想關的很大的數?
第一個程序,應該是你的輸入有問題,調試下。%lf(不是1f,是lf,才是double)