C++ program to calculate the area of the circle if the radius is greater than 0.
C++ program to calculate the area of the circle
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
//C++ program to calculate area of the circle #include <iostream> using namespace std; int main() { float radius, area_circle; // take radius as input cout << "Enter the radius of circle: "; cin >> radius; if(radius>0) { area_circle = 3.14 * radius * radius; cout << "Area of circle: " << area_circle << endl; } return 0; } |
Output
Enter the radius of circle: 4
Area of circle:50.24
The same program with another style
1 2 3 4 5 6 7 8 9 |
#include <iostream> int main() { float radius, area; std::cout << "Please Enter the radius of circle : "; std::cin >> radius; area = 3.14 * radius * radius; std::cout << "Please Area of circle with radius "<< radius << " is " << area; } |
C++ program to calculate the area of the circle if the radius is greater than 0.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
//C++ program to calculate area of the circle #include <iostream> using namespace std; int main() { float radius, area_circle; t4tutorials: // take radius as input cout << "Enter the radius of circle: "; cin >> radius; if(radius>0) { area_circle = 3.14 * radius * radius; cout << "Area of circle: " << area_circle << endl; } goto t4tutorials; return 0; } |
Output
Enter the radius of circle: 4
Area of circle:50.24
Enter the radius of circle:
C++ Exercise | If else Statement
- calculate the bill
- character is small, capital or a special character
- a number is even or odd
- 0 is a positive or negative number
- a positive and negative number
- Enter Range of numbers and replaced them
- a greater number among three numbers
- Armstrong Number
- ASCII codeĀ
- Find the Maximum value program in C++ (C Plus Plus).
- maximum number
- Maximum Number between two numbersĀ
- Student Grade
- the number is divisible by 11 or 5 or not
- TriangleĀ
- a triangle is an equilateral, isosceles or scalene
- Leap yearĀ
- character is an alphabet or not
- Grade Percentage
- character is an alphabet, digit, or special character
- character is an uppercase or lowercase.
- Weekdays
- a prime or composite number
- hours and minutes asĀ AM or PM
- swap the values of two numbers
- update even to odd
- Profit Loss
- centimeter into meter and kilometerĀ
- TriangleĀ
- Salary
- Even odd with goto statement.
- area of the circle