반복문(35)
-
ForEx03.java-for문
1부터 100까지의 누적 합 구하기 소스코드 public class ForEx03 { public static void main(String[] args) { int total = 0; for(int i=1; i
-
ForEx02.java-비교인자값 감소/증가 시키기
비교인자값 감소/2씩 증가시키기 소스코드 public class ForEx02 { public static void main(String[] args) { // 비교인자값 감소 System.out.println("비교 인자값 1씩 감소 시키기:"); for(int i=5; i>=1; i--){ System.out.print("\t"+ i); } System.out.println(); System.out.println("\t프로그램 종료!"); // 비교인자값 2씩 증가시키기 System.out.println(); System.out.println("비교 인자값 2씩 증가시키기 1:"); for(int i=0; i
-
ForEx01.java-for()문, 비교 인자값 증가
비교 인자값 증가 소스코드 public class ForEx01 { public static void main(String[] args) { for( int i=1; i
-
SwitchEx05-no break/switch+break
switch~case문과 switch~case~default 레이블 유무에 따른 출력결과 확인 소스코드 public class SwitchEx05 { public static void main(String[] args) { int n=3; // int n=7; // int n=10; switch(n) { case 1: System.out.println("First"); case 2: System.out.println("Second"); case 3: System.out.println("Thrid"); case 4: System.out.println("Fourth"); case 5: System.out.println("Fifth"); case 6: System.out.println("Sixth"); cas..
-
SwitchEx03.java-switch()문 (성적 등급 처리하기)
성적등급 처리하기 case레이블을 하나의 그룹으로 묶어서 처리하기 char형 조건값 비교하기 소스코드 public class SwitchEx03 { public static void main(String[] args) { // TODO Auto-generated method stub // switch()문 (성적 등급 처리하기) java.util.Scanner input = new java.util.Scanner(System.in); int score; char grade; System.out.println("정수형 성적을 입력하세요 > "); score = input.nextInt(); switch(score/10){ case 10: case 9:{ // 10, 9레이블을 하나의 부류로 묶어서 처리하게..
-
SwitchEx04.java-switch()문을 이용하여 사직 연산 수행
switch()문을 이용하여 사직 연산 수행 JDK ver7.0부터 switch()문에 인자값으로 문자열 전달 가능 소스코드 public class SwitchEx04 { public static void main(String[] args) { java.util.Scanner input = new java.util.Scanner(System.in); int first =0, second=0, total=0; String operator; System.out.print("첫번째 숫자를 입력하세요 > "); first = input.nextInt(); System.out.print("두번째 숫자를 입력하세요 > "); second = input.nextInt(); System.out.print("수행할 연산..