728x90
총 지불액 계산기(팁, 세금 포함): float, scanf, %.f
포스트 난이도: HOO_Intern
# Example codes
#include <stdio.h>
#include <stdlib.h>
int main()
{
int numPeople;
float bill, tips, tax, billAfter, amountPerson, tipPerson;
printf("총 액수를 입력하세요.\n");
scanf("%f",&bill);
printf("총 사람 수를 입력하세요.\n");
scanf("%d",&numPeople);
printf("Tip percentage를 입력하세요.\n");
scanf("%f",&tips);
tax = bill*0.05;
printf("Tax: %.2f $\n", tax);
billAfter=bill+tax;
printf("Bill(after Tax): %.2f $\n", billAfter);
tipPerson=(billAfter*tips)/numPeople;
printf("한 사람당 팁: %.2f $\n", tipPerson);
amountPerson=(billAfter/numPeople)+tipPerson;
printf("한 사람당 총 지불액(include tip): %.2f $\n", amountPerson);
putchar('\n');
printf("Posted by HOO.");
return 0;
}
총 액수를 입력하세요.
600
총 사람 수를 입력하세요.
5
Tip percentage를 입력하세요.
0.3
Tax: 30.00 $
Bill(after Tax): 630.00 $
한 사람당 팁: 37.80 $
한 사람당 총 지불액(include tip): 163.80 $
Posted by HOO.
728x90
'C and C++ > C and C++ Examples' 카테고리의 다른 글
[C Examples/Q&A] 체질량 지수(BMI) 계산하는 예제코드: if, else if, && (0) | 2023.02.07 |
---|---|
[C Examples] Circle area, circumference of circle 계산기 (0) | 2023.01.31 |
[C Examples] 도시의 인구 수 예측하기, 예제코드: scanf(), putchar() (0) | 2023.01.30 |
[C++ Examples] For loop와 1차 Array를 사용해서 점수 나타내기 (0) | 2022.04.17 |
[C++ Examples] Fixed, showpoint, setprecision(): 평균 근로 시간 구하기 (0) | 2022.03.13 |
댓글