answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you write a program to calculate the area of a circle in Q basic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a program to calculate the area of a circle The equation to determine the area of a circle is area equals 3.1416radiusradius Assume that the circle has a radius of 4 inches?

Rewrite the above program so that the program accepts any value for the radius then recalculate the area of the circle.


How do you write a program to input radius of a circle and calculate the area or circumferences of the cirlce?

In which computer language?


The distance between two cities in km is input through the keyboard write a program to convert and print this distance in meters feet inches and centimeters?

mesh's basic salary is input through the keyboard. his dearness allowance is 40% of basic salarying , and house rent allowance is 20% of basic salaried. write a program to calculate his gross salary


Write a program to calculate the area of a circle?

#include<stdio.h> void main() { int r=10; float pi=3.14,c; c=pi*r*r; printf("Area of the circle=%f",c); getch(); }


Write down the circle program in gw basic?

auto 10 screen 1 20 circle (160,100), 50 30 end in screen 2 auto 10 screen 2 20 circle (320,100), 200 30 end by: Tariq Ismail.


Write a java code to draw a circle inside in an ellipse?

write a program draw circle and ellipse by using oval methods in java


How do you write a standard basic program?

That really depends on what sort of program you are trying to build, what do you want the program to do?


Write a program to calculate first?

int first= 1;


How do you write BASIC program to accept variables?

dim a input a


How do you write a c program to calculate the circumference of the circle using macros with parameters?

// macro definitions: #define PI 3.14159265358979323846 #define CIRCUMFERENCE(radius) (2. * (radius) * PI) // use this as in CIRCUMFERENCE(21.34)


Write a menu driven program in java to find area of different shapes. 1. Circle 2. Triangle 3. Rectangle?

Remember that the area of a rectangle is width * height: static int getArea(Rectangle r) { return r.width * r.height; }


Write missing expression in the program below which would print the area of circle r int input Enter the circle radius?

Area of any circle = pi*radius squared