ギルブレス

ギルブレス

記事一覧

理系大学生必見、使えるプログラミングコード集!

第四回 x=10y=5print("x={0} y={1}".format(x,y))print("x+y={0}".format(x+y))print("x-y={0}x*y={1}".format(x-y,x*y))print("x/y=")print(x/y)print("x%y={0}".format(…

理系大学生必見、使えるプログラミングコード集!

第四回

x=10y=5print("x={0} y={1}".format(x,y))print("x+y={0}".format(x+y))print("x-y={0}x*y={1}".format(x-y,x*y))print("x/y=")print(x/y)print("x%y={0}".format(x%y))print("-"*10)

import matha=math.pib=2

もっとみる