Created
June 9, 2017 05:42
-
-
Save doraiso/51f7cfa112faad3aefc8a5a6a50749f1 to your computer and use it in GitHub Desktop.
This file contains 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
# 台形の面積をコマンドライン入力から求める | |
a = input("上辺? ") | |
a = float(a) | |
b = input("下辺? ") | |
b = float(b) | |
h = input("高さ? ") | |
h = float(h) | |
daikei = (a + b) * h / 2 | |
print("台形の面積は", daikei, "cm2") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment