top of page

소스 코드 제출

공개·회원 69명

...6...20

'''

bmi=int(input())

if bmi <= 10:

print("정상")

elif bmi <= 20:

print("과체중")

else:

print("비만")

'''


'''

score=int(input())

if score >= 90:

print("A")

elif score >= 80:

print("B")

elif score >= 70:

print("C")

elif score >= 60:

print("D")

else:

print("F")

'''


'''

n=int(input())

if n % 10==1 and n // 10 != 1 :

print(n,end='st')

elif n % 10 == 2 and n // 10 !=1 :

print(n,end='nd')

elif n % 10 == 3 and n // 10 !=1 :

print(n,end='rd')

else :

print(n,end='th')

'''


'''

easy 1201 1224 1216 1230

'''

'''

a=int(input())

if a>0:

print("양수")

elif a<0:

print("음수")

else:

print("0")

'''

6회 조회
주소 : 경기도 용인시 광교중앙로 302 블루 스퀘어 602호
연락처 : 031) 216 - 1546 ,     031) 215 - 1546
사업자등록번호 : 465-92-00916
​학원 등록 제 4603호
bottom of page