编程介的小学生 2019-02-21 11:58 采纳率: 20.5%
浏览 745

椭圆的半周长和面积的计算的方式,运用C语言的编程的技术的实现

Problem Description

There is a wall in your backyard. It is so long that you can’t see its endpoints. You want to build a fence of length L such that the area enclosed between the wall and the fence is maximized. The fence can be of arbitrary shape, but only its two endpoints may touch the wall.

Input
The input consists of several test cases.
For every test case, there is only one integer L (1<=L<=100), indicating the length of the fence.
The input ends with L=0.

Output
For each test case, output one line containing the largest area. Your answer should be rounded to 2 digits after the decimal point.

Sample Input
1
100
0

Sample Output
0.16
1591.55

  • 写回答

1条回答

  • weixin_43027719 2019-02-21 14:57
    关注

    #include
    #include
    #define PAI 3.14159265
    void main()
    {
    float a,b;
    float S,L;
    printf("输入长半轴a,短半轴b:");
    scanf("%f%f,&a,&b");
    S = PAI*a*b;
    L = 2*PAI*b+4*(a-b);
    printf("面积=%f,周长=%f",S,L);
    }

    评论

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置