반응형
2. 정수 1개가 입력되었을 때,
음(minus)/양(plus)과 짝(even)/홀(odd)을 출력하기
입력값
20200301
출력값
minus
odd
조건식을 연습한다.
import java.util.Scanner;
public class corona1 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("숫자입력");
int num = scan.nextInt();
if(num%2 ==0 )
System.out.println("even");
else
System.out.println("odd");
if(num >0)
System.out.println("plus");
else
System.out.println("minus");
}
}
반응형
'웹 프로그래밍 기초 > 자바기반의 웹&앱 응용SW 개발자' 카테고리의 다른 글
코로나 휴강 대체할 t형의 복습문제4. (0) | 2020.03.03 |
---|---|
코로나 휴강 대체할 t형의 복습문제3. (0) | 2020.03.03 |
코로나 휴강 대체할 t형의 복습문제1. (0) | 2020.03.03 |
자바기반의 웹&앱 응용 SW개발자 양성과정 7일차 -16 (0) | 2020.02.27 |
자바기반의 웹&앱 응용 SW개발자 양성과정 6일차 -15 (0) | 2020.02.26 |
댓글