创建一个返回pow b ^ e的函数

时间:2017-11-01 14:06:53

标签: c function subroutine

我必须创建一个返回b ^ e值的函数。这就是我所做的:

#include<stdio.h>
#include<math.h>

int funzione_potenza (int b, int e);

int main ()
{
    int b, e, potenza;

    printf("Inserisci la base: ");
    scanf("%d",&b);

    printf("Inserisci l'esponente: ");
    scanf("%d",&e);

    printf("La potenza e' %d",potenza);

    return 0;
}

int funzione_potenza (int b, int e)
{
    int potenza;

    potenza = pow(b,e);

    return potenza;
}

当我运行它时,它显示功率的错误值(例如5343123) 有什么问题?

5 个答案:

答案 0 :(得分:2)

您不需要函数来调用内置的pow函数。如果您正在尝试编写自己的函数,请尝试使用循环或递归构建解决方案。

答案 1 :(得分:0)

假设您可以自由使用数学库,该方法将返回正确答案,除非该数字符合&#34; int&#34;。否则,请考虑使用&#34; long long int&#34;对于更大的数字。

如果您不允许使用数学库,这是一个正确的实现:

long long int power(int b, int e){
          if(e==0){
                 return 1;
           }
           else if(e%2==1){
                 long long int temp = power(b,e/2);
                 return temp*temp*b;
           }
           else{
                 long long int temp = power(b,e/2);
                 return temp*temp;
           }
 }

答案 2 :(得分:0)

有两个问题:

首先,你得到一个垃圾值,因为你从不调用funzione_potenza函数。

int main()
{
  int b, e, potenza;

  printf("Inserisci la base: ");
  scanf("%d", &b);

  printf("Inserisci l'esponente: ");
  scanf("%d", &e);

  potenza = funzione_potenza(b, e);       // <<<<<<<<<< insert this line

  printf("La potenza e' %d", potenza);

  return 0;
}

其次,您甚至不需要funzione_potenza只是pow的包装,您可以直接致电pow

...
scanf("%d", &e);

potenza = pow(b, e);

printf("La potenza e' %d", potenza);
...

答案 3 :(得分:0)

你可以在不使用&#34; pow&#34; usage of "pow"-function内置功能的情况下实现电源功能,以下是代码。

#include <stdio.h>

//function prototype
int funzione_potenza (int b, int e);

int main ()
{
  int b, e, potenza;

  printf("Inserisci la base: ");
  scanf("%d",&b);

  printf("Inserisci l'esponente: ");
  scanf("%d",&e);

  potenza = funzione_potenza (b,e);

  printf("La potenza e' %d",potenza);

  return 0;
 }

 int funzione_potenza (int b, int e)
 {
    //local variables
    int i, potenza = b; //initialize potenza with b

    for (i = 0; i < e; i++ )
    {
       potenza = potenza * e; //multiply n-number of times to get the power
    } 

    return potenza;
 }

答案 4 :(得分:-1)

我的目的是展示你可以意识到的方式,但这基本上是重新发明轮子所以不推荐。在这里,我已经展示了如何尝试编写幂函数的大致想法。

实现这一目标的替代方法是

int mpow(int b, int e) {
    if (e <= -1) {
        fprintf(stderr, "mpow:(b: integer, e:non-negative integer )");
        exit(1);
    }
    if (e == 0) return 1;
    if (b == 0) return 0;
    int ans = 1;
    for (int i = 1; i <= e; i++) {
        if (!checkIfOverflown(ans, b)) ans = ans * b;
        else {
            fprintf(stderr, "%s\n", "overflow in multiplication");
            exit(1);
        }

    }
    return ans;

}

pow返回double时,你不应该将它转换为整数(为什么你要丢失精度)。

为什么将pow包裹在函数中?你可以直接使用它。

我的功能是否正确?

这个函数是正确的,只要整数不会通过溢出来搞乱它。对于较小的b值,e可行。

另外一种更简单有效的方法是

int mpow(int b, int e) {
    int res = 1, flag = 0;
    if (e <= -1) {
        fprintf(stderr, "mpow:(b: integer, e:non-negative integer )");
        exit(1);
    }
    while (e > 0) {
        if (e % 2 == 1) {
            if (!checkIfOverflown(res, b))
                res = (res * b);
            else {
                flag = 1;
                break;
            }
        }
        if (!checkIfOverflown(b, b))
            b = (b * b);
        else {
            flag = 1;
            break;
        }
        e /= 2;
    }
    if( flag ){
        fprintf(stderr, "%s\n", "overflow in multiplication");
        exit(1);
    }
    return res;
}