Minggu, April 03, 2011
di
07.54
|
Pemrograman JAVA
Instruksi Input
Instruksi Pemilihan dua alternatif
If … else …
Instruksi Pemilihan multi alternatif
Switch( )
Instruksi Perulangan
For
While
Do/while
metode input string
DataInputStream data = new DataInputStream(System.in);
try {
.
.
Variable string =data.readln()
.
.
}catch (Exception e) {}
instruksi lanjut
Contoh: Untuk menampilkan sebuah nama
import java.lang.*;
import java.io.*;
class input {
public static void main(String[] args) {
String input=" ";
DataInputStream in = new DataInputStream(System.in);
try {
System.out.print("Masukkan Nama Anda : ");
input = in.readLine();
}
catch (Exception e) {}
System.out.println("Nama Saya Adalah " + input);
}
}
Instruksi Input
Instruksi Pemilihan dua alternatif
If … else …
Instruksi Pemilihan multi alternatif
Switch( )
Instruksi Perulangan
For
While
Do/while
metode input string
DataInputStream data = new DataInputStream(System.in);
try {
.
.
Variable string =data.readln()
.
.
}catch (Exception e) {}
instruksi lanjut
Contoh: Untuk menampilkan sebuah nama
import java.lang.*;
import java.io.*;
class input {
public static void main(String[] args) {
String input=" ";
DataInputStream in = new DataInputStream(System.in);
try {
System.out.print("Masukkan Nama Anda : ");
input = in.readLine();
}
catch (Exception e) {}
System.out.println("Nama Saya Adalah " + input);
}
}
Diposting oleh
Unknown
0 komentar:
Posting Komentar