728x90
반응형
SMALL
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int base, height;
char contin = 'y';
while(contin == 'y' || contin == 'Y'){
System.out.print("Base = ");
base = sc.nextInt();
System.out.print("Height = ");
height = sc.nextInt();
System.out.printf("Triangle width = %.1f\n", (double)(base*height)/2);
sc.nextLine();
System.out.print("Continue? ");
contin = sc.next().charAt(0);
}
}
}
728x90
반응형
LIST
'프로그래밍 > 자바' 카테고리의 다른 글
[자바] 정올 130 ~ 139 : 반복제어문2 - 형성평가1 ~ 10 (0) | 2023.09.26 |
---|---|
[자바] 정올 541 ~ 548 : 반복제어문2 - 자가진단 1 ~ 8 (0) | 2023.09.26 |
[자바] 정올 128 : 반복제어문1 - 형성평가4 (0) | 2023.09.25 |
[자바] 정올 127 : 반복제어문1 - 형성평가3 (0) | 2023.09.24 |
[자바] 정올 126 : 반복제어문1 - 형성평가2 (0) | 2023.09.24 |