Friday, August 29, 2014

Latihan BufferedReader Java

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author MIFTAHUL ILMI
 */

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Latihan1 {
 public static void main(String[]args)
    {
        BufferedReader dataIn = new BufferedReader(new InputStreamReader( System.in) );
        String name="";
        System.out.print("Please Enter Your Name : ");
        try
        {
            name = dataIn.readLine();
        }
        catch(IOException e)
        {
            System.out.println("Error!");
                }
        System.out.println("Hello"+name+"!");
    }


}

No comments:

Post a Comment