Di awal perkuliahan PBO pak Fajar menjelaskan pentingnya seorang programmer untuk memiliki skill mengetik 10 jari. Pak Fajar juga mengajarkan kami cara untuk menggunakan bluej dan step-by-stepnya.
Hasil kodingan :
/**
* Bagian dari ptoject hello world untuk latihan 1
*
* @author (muhammad irfan)
* @version (0.1/20180903)
*/
public class HelloWorld
{
// instance variables - replace the example below with your own
private int x;
/**
* Constructor for objects of class HelloWorld
*/
public HelloWorld()
{
// initialise instance variables
x = 0;
System.out.println("Tugas #PBOB-Tugas1");
System.out.println("=====================================================");
System.out.println("Nama : Muhammad Irfan Syaifur Rizal Wiratama");
System.out.println("Kelas : PBO B");
System.out.println("Alamat Rumah: perum sukolilo park regency hamlet a-2, jl.keputih tegal timur, Surabaya");
System.out.println("Email : fantazqis1909@gmail.com");
System.out.println("Blog : irfannafri19.blogspot.com");
System.out.println("No HP/WA : 081327992601");
System.out.println("Twitter : @fantazqis");
}
/**
* An example of a method - replace this comment with your own
*
* @param y a sample parameter for a method
* @return the sum of x and y
*/
public int sampleMethod(int y)
{
// put your code here
return x + y;
}
}
Hasil kodingan :
Comments
Post a Comment