首页 > 编程语言 > 详细

c语言中自定义函数计算x的n次方

时间:2021-05-06 23:55:05      阅读:60      评论:0      收藏:0      [点我收藏+]

c语言中自定义函数计算x的n次方。

 

1、直接输出形式

#include <stdio.h>

int main(void)
{
    int i, x, n;
    int tmp = 1;
    puts("please input the values of x and n.");
    printf("x = "); scanf("%d", &x);
    printf("n = "); scanf("%d", &n);
    
    for(i = 1; i <= n; i++)
    {
        tmp *= x;
    }
    
    printf("the result ls: %d\n", tmp);
    return 0;
}

技术分享图片

 

 

2、自定义函数,通用浮点型和整型

#include <stdio.h>

double power(double x, int n)
{
    double tmp = 1.0;
    int i;
    for(i = 1; i <= n; i++)
    {
        tmp *= x;
    }
    return tmp;
}

int main(void)
{
    double a; 
    int b;
    puts("please input double a and int b.");
    printf("a = "); scanf("%lf", &a);
    printf("b = "); scanf("%d", &b);
    
    printf("result: %.2f\n", power(a, b));
    return 0;
}

技术分享图片

 

 

3、

#include <stdio.h>

double power(double x, int n)
{
    double tmp = 1.0;
    
    while(n-- > 0)
    {
        tmp *= x;
    }
    return tmp;
}

int main(void)
{
    double a;
    int b;
    puts("please input double a and int b.");
    printf("a = "); scanf("%lf", &a);
    printf("b = "); scanf("%d", &b);
    
    printf("result: %.2f\n", power(a, b));
    return 0;
}

技术分享图片

 

c语言中自定义函数计算x的n次方

原文:https://www.cnblogs.com/liujiaxin2018/p/14736490.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!