Monday, August 13, 2012

HelloWord Form Java

Sebelumnya saya kali ini mau mencoba sharing kepada teman-teman bloger yang mau belajar, dan mencoba pemograman Java dasar ini.
Saya sarankan komputer/laptop teman-teman sudah terinstall JDKnya. Kalau belum teman-teman bisa download JDK, Notepad++, dan IDE nya seperti Netbeans, ataupun  yang telah disediakan di menu blog kami ini.

Setelah teman-teman melakukan installasi terhadap JDK, Notepad++, dan IDE Netbeans nya. Nah sekarang kalian coba buat satu file yang dimana didalamnya Terdiri dari Code dibawah ini : saya sarankan teman-teman memulai dari public class helloword{ aja ya :D

Below is the syntax highlighted version of HelloWorld.java from §1.1 Hello World.

/*************************************************************************
 *  Compilation:  javac HelloWorld.java
 *  Execution:    java HelloWorld
 *
 *  Prints "Hello, World". By tradition, this is everyone's first program.
 *
 *  % java HelloWorld
 *  Hello, World
 *
 *  These 17 lines of text are comments. They are not part of the program;
 *  they serve to remind us about its properties. The first two lines tell
 *  us what to type to compile and test the program. The next line describes
 *  the purpose of the program. The next few lines give a sample execution
 *  of the program and the resulting output. We will always include such 
 *  lines in our programs and encourage you to do the same.
 *
 *************************************************************************/

public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello, World");
    }

}

Nah setelah teman-teman mengikuti semua coding di atas ini, Maka teman-teman melakukan Compile terlebih dahulu program di atas dengan cara sebagai berikut:


Nah setelah di Compile. Coba jalan kan dengan perintah Java HelloWord Sebagai contoh ada gambar dibawah ini :

Nah program tersebut dapat akhirnya bisa dijalan kan tampa error ya!
Semoga dapat membantu teman-teman yang mau belajar pemograman Java ini.

1 comment

Anonymous
November 16, 2012 at 3:35 PM

Как Вы считаете, на сколько поднимутся [url=http://profwoomen.ru/]пенсии[/url] после нового года?

Post a Comment