Skrilov Ihor - portfolio
mechanical engineer
Sunday, June 18, 2023
Parallelogram area calculate program
Code of program
:
print("Calculate an area of a parallelogram")
a=input("a=")
a=float(a)
b=input("b=")
b=float(b)
area=a*b
print("area=")
print(area)
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Exercises from book "Autodesk Inventor exercises" by Bob McFarlane. E Pattern features
Crossbar
This crossbar need to fix in ground verticaly with elongated сolumns. Material of construction is mild steel.
Flange - 2D draft and views of 3D model from a book "100 CAD exercises. Beginners guide by 12CAD.com"
There is a draft or 2D sketch: And there are two views of a 3D model: 3D model have been created by author of article.
Square area calculate program
Code of program : print("Calculate an area of a square") a=input("a=") a=float(a) area=a*a print("area=") prin...
No comments:
Post a Comment