간단한 계산 (사칙연산)
Python
print(10 + 5) print(10 - 5) print(10 * 5) print(10 / 5)
실행결과
15 5 50 2.0
Ruby
puts(10 + 5) puts(10 - 5) puts(10 * 5) puts(10 / 5)
실행결과
15 5 50 2
살짝 복잡한 계산
배우지 않은 문법이 포함되어 있습니다
Python
import math print(math.ceil(2.2)) print(math.floor(2.7)) print(math.pow(2,10)) print(math.pi)
실행결과
3 2 1024.0 3.141592653589793
Ruby
puts( 2.2.ceil() ) puts( 2.7.floor() ) puts( 2**10 ) puts( Math::PI )
실행결과
3 2 1024 3.141592653589793