java연습문제 - 합, 차, 곱, 평균, 큰수, 작은수 나타내기

imjingu·2023년 8월 3일
0

개발공부

목록 보기
280/481

사용자로 부터 두개의 정수를 입력받아
정수의 합, 차, 곱, 평균, 큰수, 작은수 를 계산하여 화면에 출력하는 프로그램을 작성하시오
큰수와 작은수를 구할 때는 조건연산자(삼항연산자)를 사용하시오

x : 5
y : 7
두수의 합
두수의 차
두수의 곱
두수의 평균
큰수
작은수

package chapter20230802;
import java.util.Scanner;
public class Test15 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		Scanner sc = new Scanner(System.in);
		System.out.print(" x값을 입력해 주세요: ");
		int x = sc.nextInt();
		System.out.print(" y값을 입력해 주세요: ");
		int y = sc.nextInt();
		
		System.out.println("두수의 합 " + (x+y));
		System.out.println("두수의 차 " + (x-y));
		System.out.println("두수의 곱 " + (x*y));
		System.out.println("두수의 평균 " + ((x+y) / 2.0));
		System.out.println("두수의 큰수 " + (x>y ? x:y));
		System.out.println("두수의 작은수 " + (x<y ? x:y));
	}

}

0개의 댓글