微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

根据输入的直径值计算圆形的圆周和面积

计算圆周长和面积的公式。

圆周 = 2 * p * r ; 面积 = p * r , 这里 r 是直径

参考以下代码:

#include <stdio.h>

int main(void)
{
  float radius = 0.0f;                  // The radius of the table
  float diameter = 0.0f;                // The diameter of the table
  float circumference = 0.0f;           // The circumference of the table
  float area = 0.0f;                    // The area of the table
  float Pi = 3.14159265f;

  printf(Input the diameter of a circle:);
  scanf(%f, &diameter);               // Read the diameter from the keyboard

  radius = diameter/2.0f;               // Calculate the radius
  circumference = 2.0f*Pi*radius;       // Calculate the circumference
  area = Pi*radius*radius;              // Calculate the area

  printf(\nThe circumference is %.2f, circumference);
  printf(\nThe area is %.2f\n, area);
  return 0;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐