Thursday, 16 October, 2025

9:03 pm [NEPAL, GMT+5:45]

Coming Soon .... !

WAP to Calculate the Area of a Circle

Question:
Write a program that calculates the area of a circle. The formula for the area of a circle is pi times the radius squared.

Ans:

      CLS

      CONST PI=3.141592654

      LET R = 8

      Area = PI*(R^2)

      PRINT “The area is :::” ; Area

      END