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
- 파이썬딕셔너리
- 파이썬
- 이터레이터 제네레이터
- BeautifulSoup
- 파이썬가상환경
- 알고리즘공부
- git.exe
- 파이썬 sqliite
- 파이썬예외
- 파이참github연결
- 웹크롤링
- java 컬렉션 프레임워크
- 파이선
- Java
- 북리뷰
- 파이썬웹크롤링
- java 예외
- 파이참가상환경
- 컬렉션프레임워크
- 장고 sqlite
- Django sqlite3
- 파이썬크롤링
- 이것이코딩테스트다
- 파이썬강제예외
- hashpmap
- 파이썬람다함수
- 포토샵기초
- 파이썬크롤링설치
- 파이썬 github
- 파이썬try
Archives
- Today
- Total
박미미의 지식에서 쌓는 즐거움
[코드업 기초100제] 1063~1070번 JAVA 본문
1063) 두 정수 입력받아 큰 수 출력하기 (삼항연산자 사용)
import java.util.Scanner;
public class codeUp{
public static void main(String args[]){
int a;
int b;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
System.out.print(a>b?a:b);
}
}
|
cs |
1064) 3개 정수 입력받아 가장 작은 수 출력하기 (삼항연산자 사용)
3항 연산자는 자주 사용되지는 않지만, 복잡한 계산식이나 조건처리, 비교구조를 매우 간단히 표현할 수 있게 해준다
import java.util.Scanner;
public class codeUp{
public static void main(String args[]){
int a;
int b;
int c;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
System.out.print( (a<b?a:b)<c ? (a<b?a:b):c);
}
}
|
cs |
1065) 정수 3개 입력받아 짝수만 출력하기
import java.util.Scanner;
public class codeUp{
public static void main(String args[]){
int a;
int b;
int c;
int[] array = new int[3];
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
if(a%2 == 0) array[0] = a;
if(b%2 == 0) array[1] = b;
if(c%2 == 0) array[2] = c;
for(int i=0; i<array.length ; i++) {
System.out.println("짝수:"+array[i]);
}
}
}
|
cs |
1066) 정수 3개 입력받아 짝/홀 출력하기
import java.util.Scanner;
public class codeUp{
public static void main(String args[]){
int a;
int b;
int c;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
if(a%2 == 0){
System.out.println("even"); //짝수
}else{
System.out.println("odd"); //홀수
}
if(b%2 == 0){
System.out.println("even"); //짝수
}else{
System.out.println("odd"); //홀수
}
if(c%2 == 0){
System.out.println("even"); //짝수
}else{
System.out.println("odd"); //홀수
}
}
}
|
cs |
1067) 정수 1개 입력받아 분석하기
import java.util.Scanner;
public class codeUp{
public static void main(String args[]){
int a;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
if(a%2==0){
System.out.println("even"); //짝수
}else{
System.out.println("odd"); //홀수
}
if(a>0){
System.out.println("plus"); //양수
}else{
System.out.println("minus"); //음수
}
}
}
|
cs |
1068) 정수 1개 입력받아 평가 출력하기
import java.util.Scanner;
public class codeUp{
public static void main(String args[]){
int a;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
if(a>=90 && a<=100){
System.out.println("A");
}else if(a>=70 && a<=89){
System.out.println("B");
}else if(a>=40 && a<=69){
System.out.println("C");
}else {
System.out.println("D");
}
}
}
|
cs |
1069) 평가 입력받아 다르게 출력하기 (switch문 사용)
import java.util.Scanner;
public class codeUp{
public static void main(String args[]){
String a;
Scanner sc = new Scanner(System.in);
a = sc.nextLine();
switch(a)
{
case "A":
System.out.println("best");
break;
case "B":
System.out.println("good");
break;
case "C":
System.out.println("run!");
break;
case "D":
System.out.println("slowly");
break;
}
}
}
|
cs |
1070) 월 입력받아 계절 출력하기 (switch문 사용)
import java.util.Scanner;
public class codeUp{
public static void main(String args[]){
int a;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
switch(a)
{
case 12:
case 1:
case 2:
System.out.println("winter");
break;
case 3:
case 4:
case 5:
System.out.println("spring");
break;
case 6:
case 7:
case 8:
System.out.println("summer");
break;
case 9:
case 10:
case 11:
System.out.println("fall");
break;
}
}
}
|
cs |
'IT 공부 > Java' 카테고리의 다른 글
[코드업 기초100제] 1081~1090번 JAVA (0) | 2021.08.12 |
---|---|
[코드업 기초100제] 1071~1080번 JAVA (0) | 2021.08.11 |
[코드업 기초100제] 1053~1062번 JAVA (0) | 2021.08.09 |
[코드업 기초100제] 1041~1050번 JAVA (0) | 2021.08.08 |
[코드업 기초100제] 1031~1040번 JAVA (0) | 2021.08.07 |
Comments