'Java'에 해당되는 글 2건

  1. 2010.03.10 java 한줄 입력
- 컴퓨터/Java2010. 3. 10. 16:22

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);
     }
}
Posted by 스푸라이트