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
'Programming Languages > C and C++' 카테고리의 다른 글
[C Examples] Circle area, circumference of circle 계산기 (0) | 2023.01.31 |
---|---|
[C Examples] 킬로미터(Km)를 마일(Miles)로 변환하기: scaf(), %.f (0) | 2023.01.31 |
[C Examples] 도시의 인구 수 예측하기, 예제코드: scanf(), putchar() (0) | 2023.01.30 |
[C Language] 동적 메모리 할당(Dynamic Memory Allocation): Realloc Function (0) | 2022.05.31 |
[C Language] 동적 메모리 할당: Malloc Function (0) | 2022.05.30 |
댓글