Selasa, 04 Maret 2014



CARA MEMBUAT PEMPROGRAMAN DAN ALGORITMA
Persoalan
Gajih pokok Guru tahun 2014 =700,000
Tranportasi =100.000
Gaji pokok Pesuruh =500.000
PENYELESAIAN


CARA PERTAMA BUKA NETBEN



CARA KE 2
BUKA FILE

 

CARA KE 3
 BUKA OTHER

CARA KE 4
ISI NAMA PROJEKNYA


CARA KE 5
BUKA JAVA


CARA KE 6
BUKA JAVA
PILIH JAVA CLASS - NEXT

 

CARA KE 7
BUAT NAMA FOLDER-FINIS
 


CARA KE 8
MASUKAN PROGRAMNYA

 




*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author tugiyanto
 */
import java.util.Scanner;

public class IfKeterangan {
     /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
         Scanner Ket=new Scanner(System.in);
        System.out.print("Masukan Golongan (1-4);");
        int Golongan=Ket.nextInt();
        if (Golongan>=1){
        System.out.println("jabatan=guru");
        int Gp=700000;
        System.out.println("Gaji pokok;"+Gp);
        int Trp=100000;
        System.out.println("Tranfort;"+Trp );
        if (Golongan>=2){
            System.out.println("Jabatan ;pesuruh");
            int Ps=500000;
            System.out.println("Gaji pokok;"+Ps );
           
            System.out.println("Trnfort;"+Trp );
        }
                
       
        }else {