728x90 Java 개발자 수업 강의노트95 1-5까지 순차,역순,순차 순으로 출력하는 프로그램 #1-5까지의 수를 순차,역순,순차의 순으로 출력하는 프로그램 결과: 1 2 3 4 5 4 3 2 1 2 3 4 5 public class AprilNineteen3 { /** * @param args */ public static void main(String[] args) { // 1 2 3 4 5 4 3 2 1 2 3 4 5 출력 int a=0; int num=1; for(int i=1; i 2012. 4. 19. 짝수 자리에 ?를 넣어 9까지 순차적 출력 #짝수 자리에 ?를 넣어서 9까지 순차적 출력이 나오도록 하는 프로그램 결과 ex) 1 ? 3 ? 5 ? 7 ? 9 public class AprilNineteen2 { /** * @param args */ public static void main(String[] args) { // 홀수 사이에 물음표를 출력 ex) 1 ? 3 ? 5.... for(int i=1; i 2012. 4. 19. a~b 범위 내의 모든 수의 합 #a와 b를 입력받아 범위내의 모든 수를 합한 프로그램 import java.util.Scanner; public class AprilNineteen1 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); System.out.println("입력한 두 숫자의 범위내 모든 수의 합을 구하는 프로그램입니다."); System.out.println("시작할 숫자를 입력하세요:"); int a = sc.nextInt(); System.out.println("마지막 숫자를 입력하세요:"); int b = sc.nextInt().. 2012. 4. 19. 1,2,3,4,5,4,3,2,1로 출력하기 #순차적으로 증가하다 어느 한 점에서 감소하는 값을 출력. 결과: 1 2 3 4 5 4 3 2 1 public class For5 { /** * @param args */ public static void main(String[] args) { // 1 2 3 4 5 4 3 2 1 출력 //for문 두 개 for(int i=1; i0; j--){ System.out.print(j+"\t"); } System.out.println();// 한 줄 내리기 //for문 및 if문 활용 int a=1; for(int i=1; i 2012. 4. 19. 1-100의 합 #1에서 100의 합을 구하기 public class For4 { /** * @param args */ public static void main(String[] args) { // 1-100 합 int x=0; for(int i=1; i 2012. 4. 19. 20, 19, 17, 14...출력하기 #순차적으로 줄어드는 값을 더한 수를 출력하는 프로그램 이 프로그램은 앞서 순차적 증감을 계속 더해주는 프로그램을 응용하여 순차적 감소를 계속 더해주는 것이다. 결과) 20 19 17 14 10 5... public class For3 { /** * @param args */ public static void main(String[] args) { int a=20; for(int i=0; i 2012. 4. 19. 이전 1 ··· 10 11 12 13 14 15 16 다음 SMALL