Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 리눅스마스터1급
- java 백준 1차원 배열
- 리눅스마스터 3과목
- Linux
- JavaScript
- 백준 java
- 개발자 회고록
- GoingBus
- 리눅스
- 자바스크립트 코딩의 기술
- Java
- 코딩테스트
- 리눅스마스터 1급 정리
- 스프링 컨테이너
- Kotlin
- 월간코드챌린지
- 백준 javascript
- 자바
- 명령어
- 문자열
- Memoir
- toCharArray
- 카카오
- 프로그래머스
- 반복문
- map
- 고잉버스
- 스프링 빈
- 연습문제
- 코테
Archives
- Today
- Total
hoon's bLog
백준 Java 조건문 1330, 9498, 2753, 14681, 2884, 2525, 2480 본문
반응형
문제출처 : https://www.acmicpc.net/step/4
오늘 포스팅은 조건문 관련 문제들!
역시 난이도는 거의 ★ 정도 될 듯 하다.
문제는 총 7문제!
여전히 쉬우니 대충 넘어 가보자!
는 안되고 그래도 짚어 보고 가자!!!!!!!!
[1330] 두 수 비교하기
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
if(a > b)
System.out.println(">");
else if(a < b)
System.out.println("<");
else
System.out.println("==");
}
}
[9498] 시험 성적
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a;
a = sc.nextInt();
if (a >= 90 && a <= 100)
System.out.println("A");
else if(a >= 80 && a < 90)
System.out.println("B");
else if(a >= 70 && a < 80)
System.out.println("C");
else if(a >= 60 && a < 70)
System.out.println("D");
else
System.out.println("F");
}
}
[2753] 윤년
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a;
a = sc.nextInt();
if ((a % 4 == 0) && ((a % 100) != 0 || (a % 400 == 0)))
System.out.println(1);
else
System.out.println(0);
}
}
[14681] 사분면 고르기
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x, y;
x = sc.nextInt();
y = sc.nextInt();
if(x>0 && y>0)
System.out.println(1);
else if(x<0 && y>0)
System.out.println(2);
else if(x>0 && y<0)
System.out.println(4);
else
System.out.println(3);
}
}
[2884] 알람 시계
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int hh, mm;
hh = sc.nextInt();
mm = sc.nextInt();
sc.close();
if (mm < 45){
hh--;
mm = 60 - (45-mm);
if (hh < 0)
hh = 23;
System.out.print(hh+" "+mm);
} else
System.out.print(hh+" "+(mm-45));
}
}
[2525] 오븐 시계
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int h = sc.nextInt();
int m = sc.nextInt();
int n = sc.nextInt();
int a = h*60 + m + n;
h = a / 60;
m = a % 60;
if (h >= 24) {
h= h-24;
}
System.out.println(h + " "+ m);
}
}
[2480] 주사위 세개
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
sc.close();
if (a==b && b==c && a==c){
System.out.println(10000 + a*1000);
}else if(a==b && a!=c){
System.out.println(1000 + a*100);
}else if(b==c && b!=a){
System.out.println(1000 + b*100);
}else if(c==a && c!=b){
System.out.println(1000 + c*100);
}else{
System.out.println(Math.max(a,Math.max(b,c))*100);
}
}
}
만약 여기서 막히고 어렵다면?!!?!?
아래 링크에서 조건문에 대해서 다시 알아보고 오시면 좋을듯!
Reference
조건문과 반복문 : https://psip31.tistory.com/7
728x90
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
백준 Java & Javascript 1차원 배열 2562, 10810 (0) | 2023.07.26 |
---|---|
백준 Java & Javascript 1차원 배열 10807, 10871, 10818 (0) | 2023.07.19 |
백준 Java 반복문 2739, 10950, 8393, 25304, 25314, 15552, 11021, 11022, 2438, 2439, 10952, 10951 (2) | 2023.04.10 |
백준 Java 백준 문제 풀이 시 주의 해야할 점 (1) | 2023.03.10 |
백준 입출력과 사칙연산 Java (4) | 2023.02.27 |