Last active
September 21, 2018 22:19
non_func_operation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 関数を使わない場合 | |
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