/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package pbo;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/**
*
* @author Fandy
*/
/*
* Nama : Fandy Adam
* Stambuk : E1E1 09 053
* Tugas Mata Kuliah : PBO
* Jurusan : IT
*
* SOAL 2 : GREETING
*/
public class soal2 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOException {
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Please enter your name : ");
String nama = input.readLine();
System.out.println("Welcome, "+nama);
}
}
Subscribe to:
Post Comments (Atom)






0 comments:
Post a Comment