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 = float(input("arz:")) tol = float(input("tol:")) aa = arz * tol print(aa)
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 function that receives a word and changes each letter to its next letter in the alphabet. Then returned the result. Indeed: "A" turns into "B" "" B "becomes" C "" C "becomes" D "and ........
Write a program where the user can enter the number of one -digit number and then all the numbers that can print the construction with the entered digits for example: Input: 1 input: 2 input: End 12 21 11 22
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام 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.