This blog is about providing theory as well as simple executable codes of different programming languages such as java, C, C++, and web programming, etc. This blog will be helpful to the IT students to learn about programming.

Showing posts with label program in java to find area of circle. Show all posts
Showing posts with label program in java to find area of circle. Show all posts

Wednesday, March 8, 2023

Write an object oriented program in java to find area of circle.

March 08, 2023 0
 Here's an example object-oriented Java program that calculates the area of a circle using the formula A = Ï€r²:import java.util.Scanner;public class Circle {    private double radius;    public Circle(double radius) {        this.radius = radius;    }    public double getRadius() {        return radius;    }    public double getArea() {     ...

Slider Widget