[코드업 기초 100제] [기초 - 비교 & 논리 연산] 코드업 1049 ~ 1058 자바 풀이
2022. 2. 15. 22:47ㆍ코딩테스트/코드업
728x90
반응형
https://github.com/haessae0/MCTP
1049. 두 정수 일력받아 비교하기 1
import java.io.*;
public class codeup1049 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a > b) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
1050. 두 정수 일력받아 비교하기 2
import java.io.*;
public class codeup1050 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a == b) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
1051. 두 정수 일력받아 비교하기 3
import java.io.*;
public class codeup1051 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a <= b) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
1052. 두 정수 일력받아 비교하기 4
import java.io.*;
public class codeup1052 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a != b) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
1053. 참 거짓 바꾸기
import java.io.*;
public class codeup1053 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int data = Integer.parseInt(br.readLine());
if (data == 1)
System.out.print("0");
else
System.out.print("1");
}
}
1054. 둘 다 참일 경우만 참 출력하기
import java.io.*;
public class codeup1054 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a > 0 && b > 0) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
1055. 하나라도 참이면 참 출력하기
import java.io.*;
public class codeup1055 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a > 0 || b > 0) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
1056. 참/거짓이 서로 다를 때에만 참 출력하기
import java.io.*;
public class codeup1056 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a != b) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
1057. 참/거짓이 서로 같을 때에만 참 출력하기
import java.io.*;
public class codeup1057 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a == b) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
1058. 둘 다 거짓일 경우만 참 출력하기
import java.io.*;
public class codeup1058 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String array[] = br.readLine().split(" ");
int a = Integer.parseInt(array[0]);
int b = Integer.parseInt(array[1]);
if (a == 0 && b == 0) {
System.out.print("1");
} else {
System.out.print("0");
}
}
}
728x90
반응형
'코딩테스트 > 코드업' 카테고리의 다른 글
[코드업 기초 100제] [기초 - 조건/선택 & 반복 실행 구조] 코드업 1065 ~ 1077 자바 풀이 (0) | 2022.02.15 |
---|---|
[코드업 기초 100제] [기초 - 비트 & 삼항 연산] 코드업 1059 ~ 1064 자바 풀이 (0) | 2022.02.15 |
[코드업 기초 100제] [기초 - 비트 시프트 연산] 코드업 1047 ~1048 자바 풀이 (0) | 2022.02.15 |
[코드업 기초 100제] [기초 - 산술연산] 1038 ~ 1046 자바 풀이 (0) | 2022.02.07 |
[코드업 기초 100제] [기초 - 출력변환] 1031 ~ 1037 자바 풀이 (0) | 2022.02.07 |