程序在C中查找圆的区域

时间:2017-09-19 09:45:23

标签: c

我是C的新学员,我发现这个程序是找到一个圆圈的区域。但是我的编译器不断向我抛出这个错误:

[错误] C:\ Users \ Jiachenn \ Documents \ C-Free \ Projects \ HelloWorld \ main.c:11:错误:“printf”之前的语法错误

这是我的代码:

#include <stdio.h>
#include <conio.h>
main()
{
  int radius;
  float pi =3.14f, area;
  clrscr();
  printf("Input the radius:");
  scanf("%d",&radius);
  area = pi*radius*radius
  printf("\n Area of circle= %f", area);
  getch();
}

求助!

1 个答案:

答案 0 :(得分:2)

你只是错过了行尾的分号

area = pi*radius*radius ;