본문 바로가기

미래(2015-2016)/자습

직구 금액 계산하기


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
    2015.08.26
    내용: 문제3. 해외 직구 사이트에서 평면TV 3대, 노트북 2대, 면도기 5대를 구매했습니다.
    TV : $1320.00
    노트북 : $299.00
    면도기 : $129.00
    환율 : $1 당 \1143.78
    물품 가격을 계산하여 물품 이름, 개수, 총 금액의 정보를 출력하는 프로그램을 작성하세요.
    (적당한 변수이름과 변수타입을 선언하세요.)
*/
 
#include <stdio.h>
 
int main()
{
    int TV = 1320, notebook = 299, razor = 129;
    float exchange = 1143.78;
    int cntTV = 3, cntNote = 2, cntRazor = 5;
    float priceTV = cntTV * TV * exchange, priceNote = cntNote * notebook * exchange,
        priceRazor = cntRazor * razor * exchange;
 
    printf("TV: \t%d 대, 총 %7.0f 원 \n", cntTV, priceTV);
    printf("노트북: %d 대, 총 %7.0f 원 \n", cntNote, priceNote);
    printf("면도기: %d 대, 총 %7.0f 원 \n", cntRazor, priceRazor);
    printf("============================\n");
    printf("총 금액: \t %.0f 원 \n", priceTV + priceNote + priceRazor);
 
 
    return 0;
}
cs


direct.c


'미래(2015-2016) > 자습' 카테고리의 다른 글

문자열을 소문자 혹은 대문자로 바꾸기  (0) 2015.08.28
마름모 찍기  (0) 2015.08.26
임의의 수 중 최대값 찾기  (0) 2015.08.25
자기소개서  (0) 2015.08.25
구구단 만들기  (0) 2015.08.24