import java.io.IOException;
import java.io.*;
public class
{
public static void main(String[] args) throws IOException
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int num1 = Integer.parseInt(br.readLine());
System.out.print("inputed num: "+num1);
}
}
'- 컴퓨터 > Java' 카테고리의 다른 글
eclipse -> "overlaps the location of another project" error (0) | 2018.01.17 |
---|---|
failed to load the jni shared library ... jvm.dll 에러 (1) | 2012.12.04 |
자바 디버깅 (0) | 2010.03.04 |
자바 소스 컴파일 하기 (0) | 2009.12.24 |
자바 프로그래밍 환경 (0) | 2009.12.24 |