NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1086 : [기초-정보] 그림 파일 저장용량 계산하기

1nfra 2019. 7. 24. 04:15
728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h> 
int main() {
    int w, h, b;
    double result;
    scanf("%d %d %d"&w, &h, &b);
    result = w * h * b / 8;
    result = result / 1024;
    result = result / 1024;
    printf("%.2f MB", result);
 
    return 0;
}
 
cs
728x90