casper. Powered by Blogger.

Blog ini bertujuan untuk share ilmu dan pengetahuan. Semua source/aplikasi di blog ini bebas disebar dan mencamtumkan sumber "fandy-alfa.blogspot.com".

RSS

Greeting

/*
 * 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);
    }
}

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

0 comments:

Post a Comment