본문 바로가기
study/Java

[Java] 10. 대입 연산자 Exam1 (밑변과 높이를 입력 받아서 삼각형의 넓이를 출력하기)

by 금이패런츠 2022. 3. 11.
728x90
반응형
package chap3;

import java.util.Scanner;

/*
 * 밑변과 높이를 입력받아 삼각형의 넓이를 출력하기
 * [결과]
 * 밑변의 길이
 * 10
 * 높이의 길이
 * 20
 * 
 * 넓이 = 10 * 20 / 2
 */
public class Exam7 {
	public static void main(String[] args) {
		System.out.println("삼각형의 넓이");
		Scanner scan = new Scanner(System.in);
		System.out.print("밑변의 길이:");
		int w = scan.nextInt();
		System.out.print("높이의 길이:");
		int h = scan.nextInt();
		int a = w * h;
		a /= 2;
		System.out.println(a + "=" + w + "*" + h + "/" + 2);

	}
}
728x90
반응형