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.
Please read the CB Rules http://forums.next.codeblocks.org/index.php/topic,9996.0.html first.
Topi clocked because it violates our forum rules !