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
'C and C++ > C and C++ Examples' 카테고리의 다른 글
[C Examples] 달러를 동전으로 바꾸는 예제코드 (0) | 2023.02.08 |
---|---|
[C Examples/Q&A] 체질량 지수(BMI) 계산하는 예제코드: if, else if, && (0) | 2023.02.07 |
[C Examples] 총 지불액 계산기(팁, 세금 포함): float, scanf, %.f (0) | 2023.01.30 |
[C Examples] 도시의 인구 수 예측하기, 예제코드: scanf(), putchar() (0) | 2023.01.30 |
[C++ Examples] For loop와 1차 Array를 사용해서 점수 나타내기 (0) | 2022.04.17 |
댓글