#include stdio.h
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供永豐網(wǎng)站建設(shè)、永豐做網(wǎng)站、永豐網(wǎng)站設(shè)計、永豐網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、永豐企業(yè)網(wǎng)站模板建站服務(wù),十載永豐做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
#include math.h
int main(void)
{
double a,b,c,d;
while(scanf("%lf%lf%lf%lf",a,b,c,d)!=EOF)
printf("%.2lf\n",pow((pow((a-c),2)-pow((b-d),2)),0.5));
return 0;
}
LZ printf 和 scanf 函數(shù)用錯了。。
仔細(xì)比對下。。
1,要加入頭文件 math.h
2,pow(x,y);//其作用是計算x的y次方。x、y及函數(shù)值都是double型
例:
我要計算2的5次方
源代碼如下:
#include"stdio.h"
#include"math.h"
main()
{
long total;
int x = 2, y = 5;
total = pow(x,y); /*調(diào)用pow函數(shù)*/
printf("%ld",total);
getch();
}
pow()函數(shù)用來求x的y次冪,x、y及函數(shù)值都是double型 ,其原型為:double pow(double x, double y)。
實例代碼如下:
#includestdio.h
#includemath.h
void main()
{
double x = 2, y = 10;
printf("%f\n",pow(x, y));
return 0;
}
擴(kuò)展資料:
C++提供以下幾種pow函數(shù)的重載形式:
double pow(double X,int Y);
float pow(float X,float Y);
float pow(float X,int Y);
long double pow(long double X,long double Y);
long double pow(long double X,int Y);
使用的時候應(yīng)合理設(shè)置參數(shù)類型,避免有多個“pow”實例與參數(shù)列表相匹配的情況。
其中較容易發(fā)生重載的是使用形如:
int X,Y;
int num=pow(X,Y);
這是一個比較常用的函數(shù),但是編譯器會提醒有多個“pow”實例與參數(shù)列表相匹配。
可以使用強(qiáng)制類型轉(zhuǎn)換解決這個問題:num=pow((float)X,Y)。
參考資料來源:百度百科-POW
#includestdio.h
#includeiostream
#includemath.h
#includestring.h
using namespace std;
#define N 10
int function(char a[])
{
int i,c,sum=0;
int b[N];
c=strlen(a);
for(i=0;ic;i++)
{
if('A'=a[i]a[i]='E')
b[i]=a[i]-55;
else if('a'=a[i]a[i]='e')
b[i]=a[i]-87;
else
b[i]=a[i]-48;//因為char類型的數(shù)字0對應(yīng)十進(jìn)制的48,這下你就懂了吧?。?!
}
coutendl;
for(i=0;ic;i++)
sum=int(sum+b[i]*pow(16,c-1-i));
return sum;
}
main()
{
char a[N];
printf("Please input a string:\n");
gets(a);
printf("%d\n",function(a));
return 0;
}
你可以試一下子,我已經(jīng)再改的地方做了注釋,而且,必須將char類型數(shù)字改成int型的數(shù)字,否則會產(chǎn)生不確定的錯誤?。?!希望滿意,給分啊親!
pow返回浮點數(shù),但是printf按照整數(shù)來,就會取浮點數(shù)的前幾位,剛好前幾位都是0,自然輸出0