Free Windows Wallpaper

we give information and picture wallpaper : Windows XP, Nice Wallpaper XP, Windows 3D, Windows 7, Windows Desktop, Windows Natural XP and more

psychology free wallpaper

By Djenar Siti









this is my original design...

u may download all these wallpaper



Coffee Calligraphy Wallpaper

By Djenar Siti

Its my best picture i take and add arabic calligraphy on it.
Click the images to view and download the actual size.

Lamune Anime Wallpaper

By Djenar Siti

Lamune Anime PictureLamune Anime Picture

Lamune Anime ImageLamune Anime Image

Lamune Anime WallpaperLamune Anime Wallpaper

Amaenaideyo Anime Wallpaper

By Djenar Siti

Amaenaideyo PictureAmaenaideyo Picture

Amaenaideyo WallpaperAmaenaideyo Wallpaper

Amaenaideyo Anime ImageAmaenaideyo Anime Image

JAVA Programming (JP)

By Djenar Siti

Dasar dan Contoh Code Pemprogramman JAVA

JAVA-1 : Contoh Program Input Data Mahasiswa dan Disimpan dalam suatu File

By Djenar Siti

//Program Input Mahasiswa

import java.io.*;

class mahasiswa{

    public static void main(String[]  args) throws IOException {

        //MEMBUAT FILE
        String namafile="D:/mahasiswa.txt";
        File myfile= new File(namafile);

        if(! myfile.exists())
        {
            System.out.println("Proses buat file...");
            myfile.createNewFile();
        }

        //PILIHAN MENU
        BufferedReader key=new BufferedReader(new InputStreamReader(System.in));
        //INPUT DATA

        String cek="Y";

        int menu =0;
        while(menu !=3)
        {
            System.out.println("Menu Pilihan:");
            System.out.println("-------------------------");
            System.out.println("1. Input data Mahasiswa");
            System.out.println("2. Lihat semua data");
            System.out.println("3. Exit");
            System.out.println("-------------------------");
            System.out.print("Pilihan   :");

            menu=Integer.parseInt(key.readLine());

            if (menu==1){

                FileWriter fw =new FileWriter(myfile);
                BufferedWriter bw=new BufferedWriter(fw);

                cek="y";

                while(cek.equalsIgnoreCase("y")){

                    System.out.print("NIM MAHASISWA        :");
                    bw.write("NIM MAHASISWA :" +key.readLine()+ "  ");

                    System.out.print("NAMA MAHASISWA       :");
                    bw.write("NAMA MAHASISWA :" + key.readLine() + " ");

                    System.out.print("JURUSAN MAHASISWA    :");
                    bw.write("JURUSAN MAHASISWA :" +key.readLine()+"\n");

                    System.out.println("-------------------------");

                    System.out.print("Tambah data Mahasiswa lagi ??? (y/n)  : ");
                    cek=key.readLine();

                }

                bw.close();

            }else if(menu==2){

                //MENAMPILKAN DATA
                FileReader fr =new FileReader(namafile);
                BufferedReader br =new BufferedReader(fr);

                String isi=new String();

                while((isi=br.readLine())!=null)
                {
                    System.out.println(isi);
                }

                System.out.println("\n");

            }

        }

        System.out.println("Proses selesai... \n");
    }
}

// Selamat Mencoba