编程介的小学生 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);
    }

    评论

报告相同问题?

悬赏问题

  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错