The calculation of the trapezoidal area
Write a program that receives the rule and the height of the trapezoidal and calculates the trapezoidal area of the vertical.
Area = rule * height ÷ 2
Write a program that receives the rule and the height of the trapezoidal and calculates the trapezoidal area of the vertical.
Area = rule * height ÷ 2
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
ga=float(input("ga")) er=float(input("er")) print((ga*er)/2)
a = float(input("meghdar ghaede ra vared conid:")) b = float(input("meghdar ertefa ra vared conid:")) sum1 = a * b sum2 = sum1 / 2 print(sum2)
a = float(input("a: ")) # Our little rule b = float(input("b: ")) # Our great rule h = float(input("h: ")) # Our height print((a + b)*(h)%(2)) # The sum of the small and large multiplication of multiplication in height divided by two
def area(): """ محاسبه مساحت ذوزنقه """ Great = int(input("please enter the great :")) Height = int(input("please enter the height :")) res = (Great*Height)/2 return f"result : {res:.2f}" # Displaying output with two decimal digits print(area())
base =int(input("enter the base:")) height=int(input("enter the height:")) result=base*height result2=result/2 print(result2)
q=int(input("Enter qaede: ")) e=int(input("Enter ertefa: ")) masahat=e*q/2 print(masahat)
s=float(input('قاعده را وارد کنید: ')) h=float(input('ارتفاع را وارد کنید')) m=s*h/2 print('مساحت برابر است با: ',m)
Submitting answers is currently unavailable.
Write a program that receives a sentence from the input and prints the longest and shortest word available in the sentence in the output
Online Store with the following features to add new product by Admin in the Management Panel Panel User Name by User Selecting and Registering (Online Payment and Home Payment Option ...
Write a function that receives a number and specifies or not to be paired by returning TRUE or FALSE
Write a program that receives a one -digit number from the input and finds the coefficient of smaller than 100 of those numbers and prints in the output
You must be logged in to access this section.
Login/Sign up If you don’t understand the exercise or can’t solve it for any reason, that’s completely
normal—don’t worry 😊
Try checking out easier exercises and reviewing different answers
submitted by others. Gradually, you can move on to more challenging exercises. Also, your answer
might be correct even if it’s different from others.