Varanasi-Software-Junction / datastructures

A repository on Data Structures
MIT License
8 stars 5 forks source link

Arithmetic Expressions #20

Open champaksworldcreate opened 2 months ago

champaksworldcreate commented 2 months ago
  1. Check up the following operators in Python +, -, /, //, *, %,**
  2. Use the printf statement
  3. Use the scanf statement
  4. Calculate SI and compound interest
  5. Find the area of a circle given the circumference
  6. Find SI and CI. SI=PRT/100, CI=P*(1+r/100)**T - P
  7. Find the area of a triangle, s=(a+b+c)/2, area =( s*(s-a)(s-b)(s-c))**.5
  8. Solve the Quadratic Equation Ax2 + Bx + C=0
  9. Find the Area of a Circle given the radius
  10. Given The area of a circle, find the circumference