Lab2

Lab2 프로젝트 디렉토리 안에 모든 파일(src/*.java & bin/*.class)와 보고서(3-4장정도 – 장수제한없음)를 넣고 JAVA20_Lab1_분반_학번_이름.zip 압축한 후 제출

java1-lab2

// https://www.ptable.com/?lang=ko
// number(int) symbol(String) name(String) weight(double)
// 1 H 수소 1.008
// 2 He 헬륨 4.0026
// 3 Li 리튬 6.94
// 4 Be 베릴륨 9.0122
// 5 B 붕소 10.81
// 6 C 탄소 12.011
// 7 N 질소 14.007
// 8 O 산소 15.999
// 9 F 플루오린 18.998
// 10 Ne 네온 20.180

Lab2 Basics (class, method, for, foreach, if, switch, do/while, while, array 활용)

Exceptions

ArrayIndexOutOfBoundsException 배열의 범위를 벗어난 접근할 때 발생

ArithmeticException 산술 연산 오류 에 의해 발생 (예를 들어, 0으로 정수를 나누는 경우)

NullPointerException null 객체를 사용하려고 시도할 때 발생

ClassCastException 변환할 수 없는 클래스로 객체 변환을 시도할 때 발생

NumberFormatException String을 숫자(number)로 변환할 수 없을 때 발생 (예를 들어, “1.23”을 Integer 변환을 시도할 때)

IllegalArgumentException 메소드 인자(argument) 유형을 잘못 사용할 경우

InputMismatchException (Scanner 클래스) 잘못된 입력일 때 발생

IOException 입출력(IO) 오류에 의해 발생

FileNotFoundException 지정된 경로에서 파일을 찾지 못할 때 발생

Break a loop if q-key is pressed

// break a loop if 'q'-key is pressed
static Scanner scan = new Scanner(System.in);
public static boolean getUserInputExitKey() {
    System.out.println("Please enter key to continue or the q-key to exit.");
    String input = scan.nextLine();
    if (input == null || input.contentEquals("")) return false;
    if (input.contentEquals("q")) return true;
    else return false;
}

//////////////////////////////////////////////////////////////////////////////////////////////

do {

// do whatever..

} while(!getUserInputExitKey());

returning an array from a method vs passing an array as parameter to a method

// returning an array from a method vs passing an array as parameter to a method

// passing an array as parameter to a method
public static int sumArray(int[] arr) {
	int sum = 0;
	for (int i = 0; i < arr.length; i++) {
		sum += arr[i];		
	}
	return sum;
}

// returning an array from a method
public static int[] assignArray(int length) {
	int[] arr = new int[length];
	for (int i = 0; i < arr.length; i++) {
		arr[i] = i;
	}
	return arr;
}

////////////////////////////////////// in main
// returning an array from a method
int[] arr1 = assignArray(3);
int[] arr2 = assignArray(5);
for (int e : arr1)	System.out.println(e); // 0 1 2
for (int e : arr2)	System.out.println(e); // 0 1 2 3 4

// passing an array as parameter to a method
int[] array1 = {100, 200, 300};
int[] array2 = {50, 60, 70, 80, 90};
int sum1 = sumArray(array1);
int sum2 = sumArray(array2);
System.out.println("array1 sum=" + sum1); // 100 + 200 + 300 = 600
System.out.println("array2 sum=" + sum2); // 50 + 60 + 70 + 80 + 90 = 350

2D Array

// 2D array
char[] ops = {'+', '-', '*', '/'};
int[][] numbers = {{60,50}, {40,30}, {20,10}};
for (char op : ops) {
    for (int i = 0; i < numbers.length; i++) {
        int result = calc(numbers[i][0], numbers[i][1], op);
        System.out.printf("result = %d %s %d = %d\n", numbers[i][0], op, numbers[i][1], result);
    }
}

result = 60 + 50 = 110
result = 40 + 30 = 70
result = 20 + 10 = 30
result = 60 – 50 = 10
result = 40 – 30 = 10
result = 20 – 10 = 10
result = 60 * 50 = 3000
result = 40 * 30 = 1200
result = 20 * 10 = 200
result = 60 / 50 = 1
result = 40 / 30 = 1
result = 20 / 10 = 2

Person Array

Person[] pArray = new Person[5];
// 만약 Person 객체를 하나만 생성한 후 for문에서 공유해 사용할 경우
// 마지막으로 입력된 데이터로 모든 데이터값이 치환됨
Person p = new Person();
for (int i = 0; i < 5; i++) {
    System.out.print("\n\nEnter Person name : ");
    Scanner input = new Scanner(System.in);
    p.setName(input.nextLine()); // 입력정보
    System.out.print("\n\nEnter Person age [int] : ");
    p.setAge(input.nextInt()); // 입력정보
    p.print();
    pArray[i] = p; // 리스트에 들어간 모든 원소는 동일한 p
}
System.out.println("pArray : " + Arrays.toString(pArray));

Person[] pArray = new Person[5];
// 아래와 같이 for문 안에 Person p = new Person()와같이
// 새로운 객체를 생성해야 각자 다르게 입력된 정보가 들어가게 됨
for (int i = 0; i < 5; i++) {
    Person p = new Person();
    System.out.print("\n\nEnter Person name : ");
    Scanner input = new Scanner(System.in);
    p.setName(input.nextLine()); // 입력정보
    System.out.print("\n\nEnter Person age [int] : ");
    p.setAge(input.nextInt()); // 입력정보
    p.print();
    pArray[i] = p; // 이때 p는 새로운 Person객체
}
System.out.println("pArray2 : " + Arrays.toString(pArray2));

Integer Array

int[] integerArray = new int[3];
integerArray[0] = 1;
integerArray[1] = 2;
integerArray[2] = 3;

for (int i : integerArray) 
    System.out.println(i);

for (int j = 0; j < integerArray.length; j++) 
    System.out.println(integerArray[ j ]);

int k = 0;
while (k < integerArray.length) 
    System.out.println(integerArray[k++]);
// int array
// 만약 int value1를 for문에서 공유해 사용한다해도 
// intArray1[i]에 값이 들어가므로 각각 다른 입력값이 들어가게 됨
int value1 = 0;
int[] intArray1 = new int[3];
for (int i = 0; i < intArray1.length; i++) {
	System.out.print("Please enter int number: ");
	value1 = scan.nextInt(); // 10 20 30
	intArray1[i] = value1;
}
for (int v : intArray1)	System.out.println(v); // 10 20 30

// int value2를 for문에서 내부에서 매번 생성해서 사용한다해도 
// intArray2[i]에 값이 들어가므로 각각 다른 입력값이 들어가게 됨
int[] intArray2 = new int[3];
for (int i = 0; i < intArray1.length; i++) {
	System.out.print("Please enter int number: ");
	int value2 = scan.nextInt(); // 100 200 300
	intArray2[i] = value2;
}
for (int v : intArray2)	System.out.println(v); // 100 200 300

BasicCalculation

import java.util.Scanner;

// for, foreach, if/else-if, switch, array, 2D array
public class BasicCalculation {

    public static Scanner scan = new Scanner(System.in);

    // calc (using if/else-if)
    public static int calc(int x, int y, char op) {
        if (op == '+') return x + y;
        else if (op == '-') return x - y;
        else if (op == '*') return x * y;
        else if (op == '/') return x / y;
        else {
            System.out.println("op not found");
            return 0;
        }
    }

    // calc2 (using switch)
    public static int calc2(int x, int y, char op) {
        switch(op) {
            case '+': return x + y;
            case '-': return x - y;
            case '*': return x * y;
            case '/': return x / y;
            default:
                System.out.println("op not found");
                return 0;
        }
    }

    // get user input op[+,-,*,/]
    static public char getUserInputOp() {
        char value = '\0';
        do {
            System.out.printf("Please enter the operator [+,-,*,/]: ");
            try {
                value = scan.next().charAt(0);
                System.out.println("value=" + value);
            }
            catch (Exception e) {
                System.out.printf("Error! Please re-enter!\n");
                scan.next();
                continue;
            }
        } while (value != '+' && value != '-' && value != '*' && value != '/');
        return value;
    }

    public static void main(String[] args) {
        // for
        for (int i = 0; i < 5; i++) {
            System.out.println("i=" + i);
        }
        // while
        int j = 0;
        while (j < 5) {
            System.out.println("j=" + j);
            j++;
        }
        // do-while
        int k = 0;
        do {
            System.out.println("k=" + k);
            k++;
        } while (k < 5);
        // break (0~4)
        int x = 0;
        while (true) {
            if (x >= 5) break;
            System.out.println("x=" + x);
            x++;
        }
        // continue (0~4)
        int y = 0;
        while (y < 5) {
            y++; // (1~5)
            if (y % 2 == 1) // 홀수
                continue;
            System.out.println("y=" + y); // 짝수만 출력
        }
        // for-each
        System.out.print("Please enter two numbers: ");
        x = scan.nextInt();
        y = scan.nextInt();
        char[] ops = {'+', '-', '*', '/', '^'}; // char array
        for (char op : ops) {
            int z = calc(x, y, op);
            System.out.printf("z = %d %s %d = %d\n", x, op, y, z);
        }
        // 2D array
        int[][] numbers = {{49, 57}, {36, 29}, {88, 66}};
        for (char op: ops) {
            for (int i = 0; i < numbers.length; i++) {
               int r = calc2(numbers[i][0], numbers[i][1], op);
               System.out.printf("r = %d %c %d = %d\n", 
                       numbers[i][0], op, numbers[i][1], r);
            }
        }
        // user input
        System.out.print("Please enter two numbers: ");
        x = scan.nextInt();
        y = scan.nextInt();
        char op = getUserInputOp();
        int w = calc2(x, y, op);
        System.out.printf("w = %d %s %d = %d\n", x, op, y, w)
    }
}