반응형
츄르사려고 코딩하는 코집사입니다.
1. [SW expert Academy] 연산자 - 6204번
2. 코드
- 주의 사항은 3.00(1칸 띄움)inch(1칸 띄움)=>(2칸 띄움)7.62(1칸 띄움)cm
- 띄어쓰기를 주의해야 한다.
N = float(input())
print("{0:.2f} inch => {1} cm".format(N, 2.54 * N))
1. [SW expert Academy] 연산자 - 6206번
2. 코드
- 6204번과 같은 문제이다.
N = float(input())
print("{0:.2f} kg => {1:.2f} lb".format(N, 2.2046 * N))
1. [SW expert Academy] 연산자 - 6207번
2. 코드
- 섭씨에서 화씨로 변환하는 방법은 비등점 사이 간격이 1/180이므로
- 섭씨 * 1.8 + 32 이다.
N = float(input())
print("{0:.2f} ℃ => {1:.2f} ℉".format(N, N/100*180+32))
1. [SW expert Academy] 연산자 - 6209번
2. 코드
N = float(input())
print("{0:.2f} ℉ => {1:.2f} ℃".format(N, (N-32) * 100 / 180))
1. [SW expert Academy] 연산자 - 6216번
2. 코드
- 소금물의 농도 = (소금의 양 / 소금물) * 100
print("혼합된 소금물의 농도: {0:.2f}%".format((20/300)*100))
반응형
'알고리즘 > SW expert Academy' 카테고리의 다른 글
[SW expert Academy] SWEA 1545번 거꾸로 출력해 보아요 자바(Java) (0) | 2021.01.14 |
---|---|
[SW expert Academy] SWEA 5215번 햄버거 다이어트 파이썬(Python) (0) | 2021.01.13 |
[SW expert Academy] SWEA 1289번 원재의 메모리 복구하기 파이썬(Python) (0) | 2021.01.13 |
[SW expert Academy] if문 - 6218번, 6219번, 6220번, 6221번, 6222번, 6226번 (0) | 2021.01.06 |
[SW expert Academy] 6196번 [파이썬 프로그래밍 기초(1) 파이썬의 기본 구조와 기초 문법] 4. 변수 (0) | 2021.01.04 |
[SW expert Academy] 2043번 서랍의 비밀번호 파이썬(Python) (0) | 2020.07.06 |
[SW expert Academy] 2029번 몫과 나머지 출력하기 파이썬(Python) (0) | 2020.07.06 |
[SW expert Academy] 2027번 대각선 출력하기 파이썬(Python) (0) | 2020.07.05 |
최근댓글