9.온도 단위 변환

CS/Try-cat.ch 쉬움 2016. 2. 16. 17:34

문제:

물이:

#-*-incoding:utf-8-*-
#python

tempf_s=raw_input()
arr=tempf_s.replace('F', '') #F제거

tempf=int(arr)
tempc=int(float(tempf-30)/2)#float로 형변환 해주지 않으면 음수에서 오차가 생겨버림

print str(tempc) + 'C'


'CS > Try-cat.ch 쉬움' 카테고리의 다른 글

11.중복되는 수 제거  (0) 2016.02.16
10.인코더  (0) 2016.02.16
8.단어 뒤집기  (0) 2016.02.16
7.중간값  (0) 2016.02.16
6.2등  (0) 2016.02.16
Tags
Social