[Codeup] Python 기초 100제(4)
[6084] h, b, c, s = map(int, input().split()) bit = h * b * c * s #bit mbyte = float(bit / 8 / 1024 / 1024) #MB print(format(mbyte,".1f"),"MB") [6085] w, h, b = map(int, input().split()) bit = w * h * b mbyte = float(bit/8/1024/1024) print(format(mbyte, ".2f"),"MB") [6086] n = int(input()) cnt = 0 sum = 0 while True: cnt += 1 sum += cnt if sum >= n: break print(sum) [6087] n = int(input()) for i..
2021. 5. 25.