Contoh LA ( Laporan Akhir ) Praktikum Bahasa Pemrograman Java 3

LISTING PROGRAM Tugas I import java.io.*; public class rata { public static void main(String[] args) { BufferedReader dataIn = new BufferedReader(new InputStreamReader (System.in)); String a = ""; String b = ""; String c = ""; System.out.print("Nilai ujian pertama = "); try{ a = dataIn.readLine(); }catch(IOException e){System.out.print ("error"); } System.out.print("Nilai Ujian kedua = "); try{ b = dataIn.readLine(); }catch(IOException e){System.out.print ("error"); } ...