Calculate rectangular area
Write a program that receives a rectangular length and width from the input and prints its area in the output
Write a program that receives a rectangular length and width from the input and prints its area in the output
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
arz = int(input("enter arz: ")) tol= int(input("enter tol: ")) masahat = (tol*arz) print ("masahat mesh",masahat)
length = float(input("لطفاً طول مستطیل را وارد کنید: ")) width = float(input("لطفاً عرض مستطیل را وارد کنید: ")) # Calculate area area = length * width # Print area print("مساحت مستطیل برابر است با:", area)
let tol = prompt('Tol : ') let arz = prompt('arz : ') const an = tol * arz alert(an)
X=float(input("x: ")) y=float(input("Y: ")) print(y*X)
t=int(input("TOL MOSTATIL :")) A=int(input("ARZE MOSTATIL :")) masahat = t*A print("MASAHATE MOSTATIL =" , masahat)
length = int(input("length :")) width = int(input ("width :")) print(length * width)
arz=float(input('arz:')) tool=float(input("tool:")) print(arz*tool)
Submitting answers is currently unavailable.
Write a program that prints the number of number multiplying numbers 1 to 10
Define a class of User that has a username, email and password and the following methods. Print: Print username and email in the output IS_Gmail: Check whether the user's email is Gmail and ...
Write a program that receives the infinite number of the number with the help of a graphical interface and performs the compact, multiplication and division on them, for example the user should be able to do the results of the following actions using this ...
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.