/Overloading functions for finding CIRCUMFERENCE///////
| 105 | |
| 106 | //////Overloading functions for finding CIRCUMFERENCE/////// |
| 107 | double circumference(double radius) |
| 108 | { |
| 109 | double circumference1; |
| 110 | double input_radius; |
| 111 | circumference1 = 2 * 3.141592653589793238463 * radius; |
| 112 | cout << "The circumference of Circle: " << circumference1 << endl; |
| 113 | cout << endl; |
| 114 | return circumference1; |
| 115 | } |
| 116 | |
| 117 | double circumference(double sideA, double sideB) |
| 118 | { |