본문 바로가기
Class/220728

Class 예제(1-1)

by pms93 2022. 7. 28.
package constructor;

import java.util.Scanner;

public class ReverseMain {

	// 정수 한개를 입력받은 후 입력받은 정수를 거꾸로 저장해서 출력
	// Reverse 클래스
	// - int data, result
	// - getter, setter, 생성자(기본 생성자, 정수 한개를 입력받는 생성자)
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		Reverse rev = new Reverse();
		
		System.out.print("정수를 입력하세요 : ");
		rev.setData(sc.nextInt());
		rev.reverseResult();
		
		System.out.print("정수를 입력하세요 : ");
		rev = new Reverse(sc.nextInt());
		rev.reverseResult();
	}
}

'Class > 220728' 카테고리의 다른 글

Class 예제(1-2)  (0) 2022.07.28
Class_Inheritance(1-5)  (0) 2022.07.28
Class_Inheritance(1-4)  (0) 2022.07.28
Class_Inheritance(1-3)  (0) 2022.07.28
Class_Inheritance(1-2)  (0) 2022.07.28