Note
[codeup] 104. 두 실수의 곱 본문
728x90
# 1
a,b = map(float, input().split())
print("{:.2f}".format(a*b))
# 2
a,b = map(float, input().split())
print(round(a*b,2))
'etc > Coding Test' 카테고리의 다른 글
[codeup] 106. 초를 분/초로 변환 (0) | 2022.01.05 |
---|---|
[codeup] 105. 삼각형의 넓이 구하기 (0) | 2022.01.04 |
[codeup] 103. 바둑알 십자 뒤집기 (0) | 2022.01.02 |
[codeup] 102. 바둑판에 흰 돌 놓기 (0) | 2022.01.01 |
[codeup] 101. 이상한 출석 번호 부르기3 (0) | 2021.12.31 |
Comments