Friday, September 23, 2016

Hello World in Many Ways


Terdapat banyak cara menampilkan "hello world" pada Java. Selain JOption yang sudah pernah diulas sebelumnya, ada cara lain yaitu seperti code di bawah ini:


Lalu apa maksudnya deretan code tersebut?

 javax.swing.JFrame f = new javax.swing.JFrame("HelloJava1");

 javax.swing.JFrame merupakan suatu nama class yang dapat menampilkan halaman jendela pada layar (sebut saja nama kelas tersebut singkatnya JFrame). Kelas sendiri merupakan suatu template, blue print, seperti halnya rancangan gedung. new adalah kata kunci yang digunakan untuk memberikan informasi kepada Java agar mengalokasikan memori dan menginisialisaikan suatu objek baru bernama JFrame. 

f.setSize(300, 300); adalah ukuran jendela yang akan kita buat untuk bisa menampilkan "hello world". Dan ukurannya adalah sangat kecil.

f.getContentPane().add(new HelloJava1( )); maksudnya di dalam JFrame akan ditempatkan suatu objek bernama "HelloJava1"

f.setVisible(true); digunakan untuk menampilkan bingkai jendela beserta isinya karena main ( ) bertugas untuk menyembunyikan tampilan window, dan dengan perintah f.setVisible(true); maka tampilan akan keluar.

public void paintComponent(java.awt.Graphics g) {...} paint component merupakan method untuk memanggil jenis/tipe  Graphics yang disebut g

Hello World in Many Ways

Terdapat banyak cara menampilkan "hello world" pada Java. Selain JOption yang sudah pernah diulas sebelumnya, ada cara lain yaitu seperti code di bawah ini:


Lalu apa maksudnya deretan code tersebut?

 javax.swing.JFrame f = new javax.swing.JFrame("HelloJava1");

 javax.swing.JFrame merupakan suatu nama class yang dapat menampilkan halaman jendela pada layar (sebut saja nama kelas tersebut singkatnya JFrame). Kelas sendiri merupakan suatu template, blue print, seperti halnya rancangan gedung. new adalah kata kunci yang digunakan untuk memberikan informasi kepada Java agar mengalokasikan memori dan menginisialisaikan suatu objek baru bernama JFrame. 

f.setSize(300, 300); adalah ukuran jendela yang akan kita buat untuk bisa menampilkan "hello world". Dan ukurannya adalah sangat kecil.

f.getContentPane().add(new HelloJava1( )); maksudnya di dalam JFrame akan ditempatkan suatu objek bernama "HelloJava1"

f.setVisible(true); digunakan untuk menampilkan bingkai jendela beserta isinya karena main ( ) bertugas untuk menyembunyikan tampilan window, dan dengan perintah f.setVisible(true); maka tampilan akan keluar.

public void paintComponent(java.awt.Graphics g) {...} paint component merupakan method untuk memanggil jenis/tipe  Graphics yang disebut g

Thursday, September 22, 2016

Menghitung berat dengan Java

Berikut ini adalah source code sederhana untuk menghitung berat di tempat yang berbeda. Massa benda akan tetap dimanapun berada, tetapi berat benda sangat bergantung kepada percepatan gravitasi di tempat tersebut.


Friday, September 16, 2016

JOption Pane Untuk Program Input/output GUI Sederhana

JOptionPane merupakan class pada Java dibawah package javax.swing yang memungkinkan user untuk memasukan input dan menerima output.





Monday, August 22, 2016

And I found programming is really fun. I hope one day this knowledge would give a benefit for me and hopefully for others :)

Tuesday, February 9, 2016

Wednesday, February 3, 2016


So this is the  code how to convert the Roman Numeral. I got from the book I learn about :)



Thursday, January 28, 2016

Calculate The Depreciation with C

For my improvement, I follow the book that guide me into a topic of depreciation. The definition of depreciation itself: method of calculating the cost of tangible assets over it useful life.

For example, if a business purchases a delivery truch with a cost of Rp. 150.000.000 and it is expected to be used for 5 years. The business might have depreciation expense of expected years with the calculation :

first we sum of 5 years  :
 sum = 1+2+3+4+5=15 -->  15 can be formulated as 
 sum = n(n+1)/2
 n is for calculated years

The depreciation of every years can be like this:
  • depreciation of 1 years: 5/15*Rp. 150.000.000 =  Rp. 50.000.000
  • depreciation of 1 years: 4/15*Rp. 150.000.000 =  Rp. 40.000.000
  • depreciation of 1 years: 3/15*Rp. 150.000.000 =  Rp. 30.000.000
  • depreciation of 1 years: 2/15*Rp. 150.000.000 =  Rp. 20.000.000
  • depreciation of 1 years: 1/15*Rp. 150.000.000 =  Rp. 10.000.000

In this learn, We will make a code how to  make a list of depreciation as above 

Here is the code I adopted from C handbook:
     ------------------------------------------------------------

#include<stdio.h>

main ()

{
long int cost;
int i, sum, year;
double deprec;
printf("Cost: ");
scanf("%d", &cost);
printf("Year: ");
scanf("%d", &year);
sum = year * (year+1)/2;
for (i=1;i<=year;i++)
{
deprec = (year + 1.0 - i)/sum*cost;
printf("%2d %.0lf\n", i, deprec);
}
return 0;
}

-------------------------------------------------
The outcome:

Wednesday, January 27, 2016

This program will show a fibonanci series like  1 1 2 3 5 8 13 .......


Tuesday, January 26, 2016

Calculator with C Language

Here I am with one program today :). And here is the code how to make simple calculator. Actually I copied the code from here, and tried to understand it. So simple and make sense. 

Wednesday, January 20, 2016

It's been a while not to fill up this blog. By the way, I'm trying to collect some stuff in order to improve my C learning language.

Living in digital world and improving one of programming language is just like a need #programming #c #language

Foto kiriman Hani (read:honey) (@hanifadinna) pada

Here is the code: