1. 정답import java.util.Scanner;public class Main { public static void main(String args[]) { Scanner s = new Scanner(System.in); int HH = s.nextInt(); int MM = s.nextInt(); if(MM 2. 설명import java.util.Scanner; // Scanner 클래스를 사용하기 위해 importpublic class Main { // Main 클래스 선언 public static void main(String args[]) { // 메인 메소드 시작 Scanner s = new Scanne..
1. 정답import java.util.Scanner;public class Main { public static void main(String args[]) { Scanner s = new Scanner(System.in); int x = s.nextInt(); int y = s.nextInt(); if(x != 0 && x >= -1000 && x = -1000 && y 0) { System.out.println("2"); } else if (x > 0 && y > 0) { System.out.println("1"); } else ..
1. 정답 (by JAVA)import java.util.Scanner;public class Main { public static void main(String args[]) { Scanner s = new Scanner(System.in); int a = s.nextInt(); if(a%4 == 0 && a%100 != 0 || a%400 == 0) { System.out.println("1"); } else { System.out.println("0"); } }}2. 설명import java.util.Scanner; // 자바 유틸 패키지에서 Scanner 클..
1. 정답 (by Java)import java.util.Scanner;public class Main { public static void main(String args[]) { Scanner s = new Scanner(System.in); int a = s.nextInt(); if(a >= 0 && a = 90) { System.out.println("A"); } else if(a >= 80 && a = 70 && a = 60 && a 2. 설명 1) 조건문 개념더보기조건문이란, 조건에 따라 코드 블록을 실행할지 여부를 결정하는 제어 구조 2) 정답 코드 설명 (주석처리 부분)import ja..
1. 정답import java.util.Scanner;public class Main{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); int A, B; A = scan.nextInt(); B = scan.nextInt(); if(A>= -10000 && A = -10000 && B B) { System.out.println(">"); } else if(A == B) { System.out.println("=="); } else { ..
정답public class Main{ public static void main(String args[]){ System.out.println("|\\_/|"); System.out.println("|q p| /}"); System.out.println("( 0 )\"\"\"\\"); System.out.println("|\"^\"` |"); System.out.println("||_/=\\\\__|"); }}설명 [10171번. 고양이] 문제와 마찬가지로, \(백슬래시)는 단독으로 출력이 불가능하므로 앞에 \(백슬래시)를 추가해준다.이어서, "(큰따옴표) 역시 단독으로 출력이 불가능하므로, "(큰따옴표) 앞에도 \(백..
정답 1public class Main{ public static void main(String args[]){ System.out.println("\\ /\\"); System.out.println(" ) ( ')"); System.out.println("( / )"); System.out.println(" \\(__)|"); }}※ 자바(java)에서는 \(백슬래시)는 단독으로 출력이 불가능하다. 대신 \(백슬래시)를 두번 쓰게 되면 출력이 가능해진다. → 이를 Escape Sequance 라고 하며, 문법은 \(백슬래시) + 문자 이다.
- Total
- Today
- Yesterday
- Spring
- MySQL
- ajax
- if문
- Intellij idea
- 반복문
- javascript
- 2739번
- java
- Linux
- 백준
- data science academy
- html
- DB
- 오븐시계
- springboot
- css
- Modal
- JPA
- Spring boot
- 2480
- 가계부만들기
- setting
- 조건문
- backjoon
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |