본문 바로가기
728x90

목록243

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, 2, 9, 3, 8, 4, 7, 5, 6 출력하기 #한 수는 순차적 증가, 한 수는 순차적 감소되는 값을 출력하기 결과: 1 10 2 9 3 8 4 7 5 6 public class For2 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int a=0; int b=11; for(int i=1; i 2012. 4. 19.
1, 10, 18, 25...출력하기 #1, 10, 18, 25...순으로 출력하는 프로그램 이 프로그램은 늘어나는 수가 1, 1+9=10, 10+8=18, 18+7=25...와 같이 늘어나는 수가 순차적으로 1씩 작아지는 규칙을 가지고 있다. public class For1 { /** * @param args */ public static void main(String[] args) { // 1, 10, 18, 25...출력하기 int a=1; for(int i=9; i>0; i--){ System.out.print(a+"\t"); a=a+i; // 이 명령어를 출력문 앞에 두게 되면 초기 숫자 1이 출력되지 않는다. } } } 2012. 4. 19.
SMALL