아래를 프로그래밍 하시오. 국어 : 50 영어 : 70 수학 : 95 총점과 평균을 구하시오. -단 평균은 소숫점 까지 나오도록 하시오 public class PraybeBlog { public static void main(String[] args) { int kor, eng, math; kor = 50; eng = 70; math = 95; int total = kor + eng + math; double avg = total/3.0 ; System.out.println("총점: " + total); System.out.println("평균: " + avg); } }
원의 반지름 5.6을 담는 변수 선언, PI 상수로 선언, 원의 넓이 공식 πr^2(파이알의 제곱)을 담는 변수를 선언하여 넓이를 담고 출력 public class PraybeBlog { public static void main(String[] args) { double radius = 5.6; final double PI = 3.14; double area = radius * radius * PI; System.out.println(area); } }
100과 200을 담는 변수 두 개를 선언 후, 두 수의 합의 결과를 담는 변수를 선언하여 해당 두 수의 합을 출력하는 프로그램 public class PraybeBlog { public static void main(String[] args) { int n = 100; int i = 200; int sum = n + i; System.out.println(sum); } } 3.14와 5.14를 담는 변수 두 개를 선언 후, 두 수의 곱의 결과를 담는 변수를 선언하여 해당 두 수의 곱을 출력하는 프로그램 public class PraybeBlog { public static void main(String[] args) { double n = 3.14; double i = 5.14; double sum =..