Skip to content

Instantly share code, notes, and snippets.

@doraiso
Created June 9, 2017 05:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save doraiso/bb8f0804349187bdfc0474e565683856 to your computer and use it in GitHub Desktop.
Save doraiso/bb8f0804349187bdfc0474e565683856 to your computer and use it in GitHub Desktop.
# 台形の面積を求める
a = 2
b = 3
h = 4
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