Blogger

Welcome To My Blog. Keep Reading Guys!

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

If there is a will, there is a way

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Do something, then you'll understand why ;)

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Keep calm and study hard :)

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This life is wonderful guys

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Senin, 18 November 2013

Menentukan Jenis Segitiga Pada Bahasa Pemrograman Pascal


Mencari Nilai rata-rata dengan JOptionPane menggunakan Eclipse



package Respon3;
import javax.swing.JOptionPane;
public class Nilai_Rata2_JOptionPane {
      public static void main(String[] args){
            String n="", m="", o="";
           
            n=JOptionPane.showInputDialog("Masukkan angka pertama = ");
            int bil1 = Integer.parseInt(n);
            m=JOptionPane.showInputDialog("Masukkan angka kedua = ");
            int bil2 = Integer.parseInt(m);
            o=JOptionPane.showInputDialog("Masukkan angka ketiga = ");
            int bil3 = Integer.parseInt(o);

Mencari Nilai Rata-rata BufferedReader Menggunakan Eclipse



package Respon3;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;

public class Nilai_Rata2_BufferedReader {
      public static void main(String [] args){
            BufferedReader input = new BufferedReader(new InputStreamReader(System.in));

Scrirpt Untuk Menampilkan Nilai Terkecil Menggunakan Eclipse



package Respon1;

public class Respon_3 {
            public static void main(String[] args){
            int a=46;
            int b=47;
            int c=28;
            int l=7;
            int i=25;
            int d;
           
            System.out.println("Number 1 = "+a);
            System.out.println("Number 2 = "+b);
            System.out.println("Number 3 = "+c);
            System.out.println("Number 4 = "+l);
            System.out.println("Number 5 = "+i);

Script Untuk Mendapatkan Nilai Rata-rata dari 5 Angka Menggunakan Eclipse



package Respon1;
import java.util.Scanner;
public class Respon_2 {
         public static void main(String[] args){
           Scanner input = new Scanner(System.in);
           System.out.print("Masukkan bilangan pertama: ");
           int bil1 = input.nextInt();

Script Untuk Mendeklarasikan dan mencetak variabel Menggunakan Eclipse



package Respon1;

public class Respon_1 {
            public static void main(String[] args){
                  int number =10;
                  char letter ='a';
                  boolean result = true;
                  System.out.println("Number = " + number);
                  System.out.println("Letter = "+ letter);
                  System.out.println("Result = "+result);
                  System.out.println("Str = hello");
            }
}

Bahasa pemrograman Assembly, Pascal dan C

Bahasa assembly adalah bahasa pemrograman generasi kedua. Bahasa assembly atau disebut juga bahasa rakitan adalah bahasa pemrograman komputer tingkat rendah. Bahasa assembly merupakan notasi untuk bahasa mesin yang dapat dibaca oleh manusia dan berbeda-beda tergantung dari arsitektur komputer yang digunakan.