# 130 
# 0.3 
# p  
# 바나나  출력하고 type() 으로 데이터를 구분해보세요!

print(type())




# 사칙연산을 해보세
# 2 + 3
# 5 - 10
# 10 × 10
# 12 ÷ 12
# 7을 2로 나눈 값
# 7을 2로 나누었을 때 몫
# 7을 2로 나누었을 때 나머지



# 정수로 변환해 출력해 주세요.
print( 1.5 )
print( -1.0 )
print( 30.0 )


# 실수로 변환해 출력해 주세요.
print( 1 )
print( -1 )
print( 10 )


# 알맞은 계산값인 100이 나오도록 계산식을 수정해 보세요.
print( 40 + 10 * 2 )


Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: