News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

I am making a simple PI calculator and need help. Im new

Started by f0rze, March 17, 2017, 05:24:48 PM

Previous topic - Next topic

f0rze

Well i need some help with this program.

#include <iostream>
#define PI 3.14

int main()

{
     //Simple PI Calculator
   
    float radius;
    float no;
    float yes;


    std::cout << "Enter circle radius: ";

    std::cin >> radius;
        float circle_area = PI * radius;

    std::cout << "Circle's radius: " << circle_area << std::endl;


    std::cout << "Would you like to enter another PI calculation?" << std::endl;
   
        return 0;
}

Can some one help with this? I want it so if you say yes it will pretty much start the program all over again. And if you press no it will close it.


Jenna