import java.util.*;

public class Scan {

	public static void main(String[] args) {  
		Scanner scan = new Scanner(System.in);
		int input;
		input = scan.nextInt();
  
		System.out.print("input integer : ");
		System.out.println(input);
	}
    
}

'java, jsp, spring, egov' 카테고리의 다른 글

jsp 파일 다운로드  (0) 2016.02.04
모바일 접속 구별  (0) 2015.03.31
mod 함수를 이용한 나누기  (0) 2015.01.17
기본 메인 메서드  (0) 2015.01.10
page utf-8 디렉티브  (0) 2014.09.27
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,