CodeSolved

A comprehensive source of programming questions and exercises

Calculate rectangular area

Practice Easy 2/ Download 10428 Views Most popular

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

72 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.
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
arz = int(input("enter arz: "))
tol= int(input("enter tol: "))
masahat = (tol*arz)
print ("masahat mesh",masahat)
Amirali Download Python
tol = int(input("tol:"))
arz = int(input("arz:"))
s = tol * arz
print (s)

User 3206 Download Python
<< Previous page 1 2 8 Next page >>

Submit answer

Submitting answers is currently unavailable.

Related content

Detection using AI
×
×
Close