목록딸기 공부방/JAVA (5)
특별한딸기이야기
보호되어 있는 글입니다.
냐양...
package com.tistory.special0strawberry; public class Run { // 메인 함수 public static void main(String[] args) { IntArray a, b, c; Sort s = new Sort(); Add add = new Add(); a = new IntArray(); b = new IntArray(); System.out.print("첫번째 "); a.UserInput(); s.BubbleSort(a); System.out.print("\n첫번째 "); a.PrintArray(); System.out.print("\n두번째 "); b.UserInput(); s.SelectSort(b); System.out.print("\n두번째 ");..
두 개의 배열을 합하는 프로그램 사용자로부터 두 개의 배열을 입력받아 하나의 배열로 만든다. 모든 배열을 정렬되어야 한다. public class Run { // 메인 함수 public static void main(String[] args) { IntArray a, b, c; Sort s = new Sort(); Add add = new Add(); a = new IntArray(); b = new IntArray(); a.UserInput(); s.BubbleSort(a); a.PrintArray(); b.UserInput(); s.BubbleSort(b); b.PrintArray(); c = add.ArrayAdd(a, b); s.BubbleSort(c); c.PrintArray(); } } imp..
// 숫자를 입력받아 반대로 출력하는 프로그램 // 예 : 123456 -> 654321 package com.tistory.special0strawberry; import java.util.*; public class Integer_Print { private int x; private int division; private int[] result; private Scanner scan; // 생성자 // 내용 : 변수의 초기화 public Integer_Print() { setX(0); setDivision(1); scan = new Scanner(System.in); } // 입력값 : 배열의 크기 // 내용 : result 배열의 크기를 정한다. public void Set_Result_Lengt..