Computer Science, asked by mileva5443, 4 months ago

Write following arithmetic expressions using operators in Python:

(i) c=a+b2a

(ii) x = a3 + b3 + c3

(iii) A=πr(r+h)2​

Answers

Answered by subgb98
10

Answer:

i)   a+(b*b*a)

2) x=(a*a*a)+(b*b*b)+(c*c*c)

3) A=math.pi*r*(r+h)*2

Answered by anindyaadhikari13
4

Answer:-

These are the python expression,

  1. c=a+b*b+a
  2. x=a*a*a+b*b*b+c*c*c
  3. A=math.pi*r*(r+h)*2
Similar questions