Computer Science, asked by sayurira12, 1 month ago

To find the area of the circle word the user has to put radius [A=pi *r2 ].
(QBASIC)

Answers

Answered by basittheprince
0

Step by step

Explanation:

Hdhdhdggdjsbgdhfjdjhd

Answered by atrs7391
0

'Project Type: Brainly Answer

'Date Created: 11-02-2021

'Date Edited Last Time: ---NIL---

'Question Link: https://brainly.in/question/34983072

'Question: To find the area of the circle. The user has to put radius [A=pi *r2].(QBASIC)

'Program Created By: atrs7391

'Programming Language: QB64 / QBasic

'Language version (When program created or last edited): QB64 v1.4

CLS

'clearing screen

INPUT "ENTER RADIUS: ";R

'asking user about circle's radius

A = 3.14*(R*R)

'calculating area of the circle

PRINT "THE AREA OF THE CIRCLE = ";A

'printing area of the circle

Similar questions