0% found this document useful (0 votes)
7 views1 page

IO Console

Uploaded by

Restu Adi Guna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

IO Console

Uploaded by

Restu Adi Guna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

import java.io.

Console;

public class IO_Console {

public static void main(String[] args) {


String nama, kampus,Tanggal,Nim;
Console con = System.console();

System.out.println("==========Data Mahasiswa==========");
System.out.print("Masukkan nama Kampus : ");

kampus = con.readLine();
System.out.print("Masukan Nama Anda : ");

nama = con.readLine();

System.out.print("Masukkan NIM : ");


Nim = con.readLine();

System.out.print("Tanggal Masuk ke Kampus :");


Tanggal = con.readLine();

System.out.println("--------------------");
System.out.println("Kampus : " + nama);
System.out.println("Nama : " + kampus);
System.out.println("NIM : " + Nim );
System.out.println("Join Kampus : " + Tanggal);
System.out.println("--------------------");

You might also like