Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: f0rze on March 17, 2017, 05:24:48 pm

Title: I am making a simple PI calculator and need help. Im new
Post by: f0rze on March 17, 2017, 05:24:48 pm
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.
Title: Re: I am making a simple PI calculator and need help. Im new
Post by: Commaster on March 17, 2017, 06:26:25 pm
Please read the CB Rules http://forums.codeblocks.org/index.php/topic,9996.0.html first.
Title: Re: I am making a simple PI calculator and need help. Im new
Post by: Jenna on March 18, 2017, 09:10:00 am
Topi clocked because it violates our forum rules !