zoukankan      html  css  js  c++  java
  • c语言中表示乘方的运算

    1、

    #include <stdio.h>
    
    int main(void)
    {
        printf("%f", pow(2,3));
        return 0;
    }

    #include <stdio.h>
    
    int main(void)
    {
        double i = 2, j = 4;
        printf("%f", pow(i,j));
        return 0;
    }

    #include <stdio.h>
    
    int main(void)
    {
        double i, j;
        puts("please input two numbers.");
        printf("i = "); scanf("%lf", &i);
        printf("j = "); scanf("%lf", &j);
        
        printf("%f", pow(i,j));
        return 0;
    }

     ↓

    #include <stdio.h>
    #include <math.h>
    
    int main(void)
    {
        printf("%f", pow(3,3));
        return 0;
    }
  • 相关阅读:
    class线程信息
    Class 文件简介
    JVM对象及垃圾回收处理
    jvm体系结构
    查找

    二叉树
    队列


  • 原文地址:https://www.cnblogs.com/liujiaxin2018/p/14235976.html
Copyright © 2011-2022 走看看