207k views
5 votes
12. Write the output of the following program: CLS LET PI = 3.14 LET R = 5 LET Area = PI*R*R PRINT Area. END​

User Fred Foo
by
8.4k points

1 Answer

4 votes
Pi = 3.14
R = 5

Area = PI*R*R
3.14 * 5*5
78.5

Print area means display the value of area so it will display 78.5
User Patrice IMBERT
by
7.7k points