import java.util.Scanner;
public class test1{
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
System.out.println("몇 m입니까?");
int i = scanner.nextInt();
System.out.println((i/5)+"층입니다.");
}
}
한 층의 높이가 5m 일때 건물의 높이를 입력 받아 몇층인지를 출력하라
단 나머지는 버림 처리
import java.util.Scanner;
public class test1{
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
System.out.println("커피 2000원, 우유 1000원, 물 500원 갯수 : ");
String s = scanner.nextLine();
int i = scanner.nextInt();
if(i=="커피"){
int d=2000*i;
System.out.println("커피"+d);
}else if(i=="우유"){
int d=1000*i;
System.out.println("우유"+d);
}else if(i=="물"){
int d=500*i;
System.out.println("물"+d);
}
}
}
커피 2000, 우유 1000, 물 500원이다. 제품 종류와 갯수를 입력받아서 얼마인지 출력하라.
'과제' 카테고리의 다른 글
과제_JAVA_LINUX_5주차 (2) | 2021.04.08 |
---|---|
리눅스&자바 과제물 ( 추후 수정 ) (0) | 2021.04.01 |
과제 - 리눅스 명령어 실습 / 정리 (명품 자바 프로그래밍 개정 4판) (0) | 2021.03.18 |
자바 - 클래스명과 파일명 (1) | 2021.03.14 |
자바 응용프로그램을 개발할때는 JDK? JRE? (0) | 2021.03.14 |