Halo, sudah lama saya tidak posting lagi disini ^^
Sekarang, saya akan membahas tentang script 'Mendapatkan Input Dari Keyboard' semoga bermanfaat ya ^^b
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modul5;
/**
*
* @author Indah
*/
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import javax.swing.JOptionPane;
public class GetInputFromKeyboard {
public static void main(String [] args) throws IOException {
String nama;
System.out.println("Siapa nama anda ?");
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
nama = br.readLine();
System.out.println("Halo" +nama+ "Apa Kabar ?");
String hobby;
System.out.println("Apa hobby anda ?");
InputStreamReader hby = new InputStreamReader(System.in);
BufferedReader hb = new BufferedReader(hby);
hobby = hb.readLine();
System.out.println("Hobby anda adalah" +hobby+ "Hobby yang bagus !");
String alamat = JOptionPane.showInputDialog("Alamat anda dimana ?");
System.out.println("Alamat saya di"+alamat);
}
}
Cat : Saya membuat program ini menggunakan aplikasi NetBeans IDE 6.9
0 komentar:
Posting Komentar