{{{~cpp #include #include using namespace std; void process(double a, double b, double c) { if((a+b+c) == 0) { cout << "The radius of the round table is: 0.000" <> a >> b >> c) { process(a, b, c); } return 0; } }}} [TheKnightsOfTheRoundTable]