728x90
Circle area, circumference of circle 계산기
포스트 난이도: HOO_Intern
# Example codes
#include <stdio.h>
#include <stdlib.h>
int main()
{
float area, circumference;
int r;
printf("Enter radius\n");
scanf("%d", &r);
circumference=2*3.14*r;
area=3.14*r*r;
printf("Circumference of the Circle is %.2f and the Area is %.2f \n", circumference, area);
printf("Posted by HOO.");
return 0;
}
Enter radius
15
Circumference of the Circle is 94.20 and the Area is 706.50
Posted by HOO.
728x90
'Programming Languages > C and C++' 카테고리의 다른 글
[C Examples] 별 모양으로 정사각형 만들기 (0) | 2023.02.01 |
---|---|
[C Examples] 적금 계산기 (0) | 2023.01.31 |
[C Examples] 킬로미터(Km)를 마일(Miles)로 변환하기: scaf(), %.f (0) | 2023.01.31 |
[C Examples] 총 지불액 계산기(팁, 세금 포함): float, scanf, %.f (0) | 2023.01.30 |
[C Examples] 도시의 인구 수 예측하기, 예제코드: scanf(), putchar() (0) | 2023.01.30 |
댓글