전체 방문자
오늘
어제
21종
종이의 코딩 공부방
21종
  • 분류 전체보기 (174)
    • JAVA (64)
    • Springboot (46)
      • 블로그만들기 (45)
    • Database (60)
      • Oracle (60)
    • 프로젝트 3 (CELOVER) (0)
    • 개발서버 구축 (3)

블로그 메뉴

  • 홈
  • 태그
  • 방명록

인기 글

최근 글

최근 댓글

hELLO · Designed By 정상우.
21종

종이의 코딩 공부방

JAVA

[자바/JAVA] 프로그래밍 - Operator 실습 예제

2023. 5. 30. 18:59

Operator 예제

 

문제 01.

키보드로 입력 받은 하나의 정수가 양수이면 “양수다“, 양수가 아니면 “양수가 아니다“를 출력하세요.

public void practice1() {
    Scanner sc = new Scanner(System.in);

    System.out.print("정수 : ");
    int num = sc.nextInt();

    System.out.println(num > 0 ? "양수다." : "양수가 아니다.");

    sc.close();

}

문제 02.

키보드로 입력 받은 하나의 정수가 양수이면 “양수다“,
양수가 아닌 경우 중에서 0이면 “0이다“, 0이 아니면 “음수다”를 출력하세요.

public void practice2() {
    Scanner sc = new Scanner(System.in);

    System.out.print("정수 : ");
    int num = sc.nextInt();

    String result = (num > 0 ) ? "양수다." : (num == 0) ? "0이다." : "음수다.";
    System.out.println(result);

    sc.close();
}

문제 03.

보드로 입력 받은 하나의 정수가 짝수이면 “짝수다“, 짝수가 아니면 “홀수다“를 출력하세요.

public void practice3() {
    Scanner sc = new Scanner(System.in);

    System.out.print("정수 : ");
    int num = sc.nextInt();

    String result = (num % 2 == 0) ? "짝수다." : "홀수다.";
    System.out.println(result);

    sc.close();
}

문제 04.

모든 사람이 사탕을 골고루 나눠가지려고 한다. 인원 수와 사탕 개수를 키보드로 입력 받고 1인당 동일하게 나눠가진 사탕 개수와 나눠주고 남은 사탕의 개수를 출력하세요.

public void practice4() {
    Scanner sc = new Scanner(System.in);

    System.out.print("인원 수 : ");
    int pNum = sc.nextInt();

    System.out.print("사탕 개수 : ");
    int cNum = sc.nextInt();

    System.out.println("1인당 사탕 개수 : " + (cNum / pNum));
    System.out.println("남는 사탕 개수 : " + (cNum % pNum));

    sc.close();
}

문제 05.

키보드로 입력 받은 값들을 변수에 기록하고 저장된 변수 값을 화면에 출력하여 확인하세요.
이 때 성별이 ‘M’이면 남학생, ‘M’이 아니면 여학생으로 출력 처리 하세요.

public void practice5() {
    Scanner sc = new Scanner(System.in);

    System.out.print("이름 : ");
    String name = sc.nextLine();

    System.out.print("학년(숫자만) : ");
    int grade = sc.nextInt();

    System.out.print("반(숫자만) : ");
    int group = sc.nextInt();

    System.out.print("번호(숫자만) : ");
    int num = sc.nextInt();
    sc.nextLine();

    System.out.print("성별(M/F) : ");
    char gender = sc.nextLine().charAt(0);

    System.out.print("성적(소수점 아래 둘째자리까지) : ");
    double result = sc.nextDouble();

    System.out.println(grade + "학년 " + group + "반 " + num + "번 " + name + 
            ((gender == 'M') ? " 남" : " 여") + "학생의 성적은 " + result + "이다.");

    sc.close();
}

문제 06.

나이를 키보드로 입력 받아 어린이(13세 이하)인지, 청소년(13세 초과 ~ 19세 이하)인지, 성인(19세 초과)인지 출력하세요.

public void practice6() {
    Scanner sc = new Scanner(System.in);

    System.out.print("나이 : ");
    int age = sc.nextInt();

    System.out.println((age <= 13) ? "어린이" : (age > 19) ? "성인" : "청소년");

    sc.close();
}

문제 07.

국어, 영어, 수학에 대한 점수를 키보드를 이용해 정수로 입력 받고,
세 과목에 대한 합계(국어+영어+수학)와 평균(합계/3.0)을 구하세요.
세 과목의 점수와 평균을 가지고 합격 여부를 처리하는데
세 과목 점수가 각각 40점 이상이면서 평균이 60점 이상일 때 합격, 아니라면 불합격을 출력하세요.

public void practice7() {
    Scanner sc = new Scanner(System.in);

    System.out.print("국어 : ");
    int kor = sc.nextInt();

    System.out.print("영어 : ");
    int eng = sc.nextInt();

    System.out.print("수학 : ");
    int math = sc.nextInt();

    double avg = (kor + eng + math) / 3.0 ;

    System.out.println("합계 : " + (kor + eng + math));
    System.out.println("평균 : " + avg);

    boolean each = (kor>= 40) && (eng>= 40) && (math>= 40); 
    System.out.println((each && (avg >= 60)) ? "합격" : "불합격");

    sc.close();

}

문제 08.

주민번호를 이용하여 남자인지 여자인지 구분하여 출력하세요

public void practice8() {
    Scanner sc = new Scanner(System.in);
    System.out.println("주민번호를 입력하세요(- 포함) : ");

    char ssn = sc.nextLine().charAt(7);
    String result = ((ssn == '2') || (ssn == '4')) ? "여자" : "남자";
    System.out.println(result);

    sc.close();

}

문제 09.

키보드로 정수 두 개를 입력 받아 각각 변수(num1, num2)에 저장하세요.
그리고 또 다른 정수를 입력 받아 그 수가 num1 이하거나 num2 초과이면 true를 출력하고 아니면 false를 출력하세요.
(단, num1은 num2보다 작아야 함)

public void practice9() {
    Scanner sc = new Scanner(System.in);
    System.out.print("정수1 : ");
    int num1 = sc.nextInt();

    System.out.print("정수2 : ");
    int num2 = sc.nextInt();

    System.out.print("입력 : ");
    int input = sc.nextInt();

    String result = ((num1 >= input) || (num2 < input)) ? "true" : "false";
    System.out.println(result);

    sc.close();

}

문제 10.

3개의 수를 키보드로 입력 받아 입력 받은 수가 모두 같으면 true, 아니면 false를 출력하세요.

public void practice10() {
    Scanner sc = new Scanner(System.in);

    System.out.print("입력1 : ");
    int num1 = sc.nextInt();

    System.out.print("입력2 : ");
    int num2 = sc.nextInt();

    System.out.print("입력3 : ");
    int num3 = sc.nextInt();

    System.out.println((num1 == num2) && (num2 == num3) ? "true" : "false" );

    sc.close();
}

문제 11.

A, B, C 사원의 연봉을 입력 받고 각 사원의 연봉과 인센티브를 포함한 연봉을 계산하여 출력하고 인센티브 포함 급여가 3000만원 이상이면 “3000 이상”, 미만이면 “3000 미만”을 출력하세요.
(A 사원의 인센티브는 0.4, B 사원의 인센티브는 없으며, C 사원의 인센티브는 0.15)

public void practice11() {

    Scanner sc = new Scanner(System.in);

    System.out.print("A사원의 연봉 : ");
    int a = sc.nextInt();

    System.out.print("B사원의 연봉 : ");
    int b = sc.nextInt();

    System.out.print("C사원의 연봉 : ");
    int c = sc.nextInt();
    System.out.println("");

    System.out.println("A사원 연봉/연봉+a : " + a + "/" + (double)(a += a * 0.4));
    System.out.println(a >= 3000 ? "3000 이상" : "3000 미만");

    System.out.println("B사원 연봉/연봉+a : " + b + "/" + (double)(b));
    System.out.println(b >= 3000 ? "3000 이상" : "3000 미만");

    System.out.println("C사원 연봉/연봉+a : " + c + "/" + (double)(c += c * 0.15));	
    System.out.println(c >= 3000 ? "3000 이상" : "3000 미만");

    sc.close();
}

 

    'JAVA' 카테고리의 다른 글
    • [자바/JAVA] 프로그래밍 - 제어문 (반복문 do-while)
    • [자바/JAVA] 프로그래밍 - 제어문 (반복문 while)
    • [자바/JAVA] 프로그래밍 - 제어문 (반복문 for),랜덤 값 생성(Math.random())
    • [자바/JAVA] 프로그래밍 - 제어문 (조건문 Switch)
    21종
    21종
    코딩 공부한 것 정리하려고 만든 블로그

    티스토리툴바