天天看點

hdoj2007 && pow精度問題

hdoj2007 && pow精度問題

題解

#include<stdio.h>
#include<math.h>
#include<string.h>
#include<stdlib.h>
#include<bits/stdc++.h>
using namespace std;
int main()
{
    int m,n;
    int a[10000];
    int res1,res2;
    while(scanf("%d%d",&m,&n)!=EOF){
        if(m>n){
            res1=0;
            res2=0;
            for(int i=n;i<=m;i++){

                if(i%2==0)
                    res1=res1+pow(i,2);
                else
                    res2=res2+pow(i,3)+0.5;
            }
            printf("%d %d\n",res1,res2);
        }
        else{
            res1=0;
            res2=0;
            for(int i=m;i<=n;i++){

                if(i%2==0)
                    res1=res1+pow(i,2);
                else
                    res2=res2+pow(i,3)+0.5;
            }
            printf("%d %d\n",res1,res2);
        }
    }
    return 0;
}

           

學習筆記

一開始WA,發現是沒有處理m>n的情況,處理之後就好了。

注意點:pow函數的輸出是浮點型的,是以pow(5,3)的時候輸出了124,需要加上0.5來四舍五入。

math.h庫裡,pow函數是基于浮點運算的。

pow指派給int的時候:

指數用常量,結果正确;

指數用int、double,結果錯誤

pow指派給double的時候:

指數用常量、int、double,結果正确

!!是以在使用pow函數時,底數必須是常量(double型),結果才不會出現偏差。