用VB编写一个通用(或子程序)过程area,以实型变量r作为形参,计算并在过程中输出圆的面积。

用VB编写一个通用(或子程序)过程area,以实型变量r作为形参,计算并在过程中输出圆的面积。,第1张

#include <stdio.h>

#include <stdlib.h>

#include <math.h>

#define PI 3.14

float area(int data)

int main(void)

{

    int i

    float num

    scanf("%d",&i)

    num=area(i)

    printf("面积%f:",num)

}

float area(int data)

{

    int test

    float h

    tset=data

    h=PI*pow(test,2)

    return h

}

#include <stdio.h>

#define PI 3.14

double area(double r){

return PI*r*r

}

int main()

{

double r,s

scanf("%lf",&r)

s = area(r)

printf("%.2lf",s)

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11419053.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存