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 prints the figure below in the output *******************************
Suppose we have the following 2 tables Users-> name, idbooks-> User_id, id, name 1- Write a query that shows user-related books at No. 2- Write a query to user names a ...
Write a program that receives a number from the user and converts to letters suppose the numbers entered between 0 and 1000000 23 ➞ Twenty Three 405 ➞ Four HundredR
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام 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.