Skip to content

Instantly share code, notes, and snippets.

@keita-lib
Last active September 21, 2018 22:19
non_func_operation
# 関数を使わない場合
answer = ( 10 + 20 ) / 2.0 # 15.0
answer = ( 30 + 60 ) / 2.0 # 45.0
answer = ( 95 + 87 ) / 2.0 # 91.0
answer = ( 30 + 20 ) / 2.0 # 25.0
answer = ( 15 + 17 ) / 2.0 # 16.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment