Computer Science, asked by happyorbits, 1 month ago

A company charges. 50/sq ft to paint a billboard. Input length(l) and breadth(b) of a board in fees parameters to the main() function. Calculate the area and total cost to paint it.

Answers

Answered by jlaymra
1

Explanation:

a = int(input('please enter the length: ')

b = int(input('please enter the breadth:' )

c = int(input('Enter the cost of per/sq ft: ')

While true:

d = a*b

Print('So area is : ' d)

e = d*c

Print('And the cost is:' e)

Break

Input()

If this helps you then mark it as brilliant

Similar questions