728x90
package ch01_variable_operator;

public class AreaTest {

    public static void main(String[] args) {

        double radius;
        double area;
        double PI;

        radius = 10.0;
        PI = 3.14;

        area = PI * radius * radius ;

        System.out.print("반지름이" + radius + "일 때");
        System.out.println("\n원의 면적은" + area + "입니다.");

    }
}

cf) Myjava/AreaTest.java at master · nolooker/Myjava (github.com)

728x90
반응형

'console.log("What ? " + Cord); > Java' 카테고리의 다른 글

<Git> ArithmeticOperator.java  (0) 2023.02.02
<Git> Arithmetic01.java  (0) 2023.02.02
<Git> add2.java  (0) 2023.02.02
<Git> add.java  (0) 2023.02.02
Java Programming <덧셈 연산>  (0) 2023.02.02

+ Recent posts