程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c語言-scanf函數用%f讀取double類型時,為什麼會出現錯誤?

c語言-scanf函數用%f讀取double類型時,為什麼會出現錯誤?

編輯:編程綜合問答
scanf函數用%f讀取double類型時,為什麼會出現錯誤?

問題一:
#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)

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