CodeSolved

Solved Programming Questions & Exercises

Calculate rectangular area

Practice Easy 2/ Download 11585 Views Most popular

Write a program that receives a rectangular length and width from the input and prints its area in the output

79 Answers

This answer is only visible to premium members
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

This answer is only visible to premium members

Subscription is currently unavailable.
This answer is only visible to premium members
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

This answer is only visible to premium members

Subscription is currently unavailable.
This answer is only visible to premium members
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

This answer is only visible to premium members

Subscription is currently unavailable.
arz = float(input("arz:"))
tol = float(input("tol:"))
aa = arz * tol
print(aa)
Basir12 Download Python
length = float(input("لطفاً طول مستطیل را وارد کنید: "))
width = float(input("لطفاً عرض مستطیل را وارد کنید: "))

# Calculate area
area = length * width

# Print area
print("مساحت مستطیل برابر است با:", area)
Mma123 Download Python
let tol = prompt('Tol : ')
let arz = prompt('arz : ')
const an = tol * arz
alert(an)
t=int(input("TOL MOSTATIL :"))
A=int(input("ARZE MOSTATIL :"))
masahat = t*A
print("MASAHATE MOSTATIL =" , masahat)
Hana88 Download Python
length = int(input("length :"))
width = int(input ("width :"))
print(length * width)
J1625 Download Python
arz=float(input('arz:'))
tool=float(input("tool:"))
print(arz*tool)
Armin Download Python
<< Previous page 1 2 8 Next page >>

Submit answer

Submitting answers is currently unavailable.

Related content

Detection using AI
×
×
Close