PSP, NDS, PC, SOFTWARE, and OTHERS  

Go Back   PSP, NDS, PC, SOFTWARE, and OTHERS > ALL ABOUT PC > PC PROGRAMING

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 04-04-2008, 04:55 PM
jamur_super's Avatar  

Join Date: Mar 2008
Location: surabaya
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
jamur_super MANA IMPROVISASINYA??
Talking Membuat kalkulator sederhana dengan Java

##copy paste source code ini di text editor kamu##
##sebelumnya install dulu jdk1.5 atau versi yang terbaru dan text editor (bisa pake jcreator atau editplus)##

PHP Code:

import java
.io.*;

public class Kalkulator 
{
    
public static void main(String [] args
    {
        
try{
        
        
DataInputStream in = new DataInputStream (System.in);
        
System.out.print("Inputkan angka pertama = ");
        
int a Integer.parseInt(in.readLine());
        
System.out.print("Inputkan angka kedua   = ");
        
int b Integer.parseInt(in.readLine());
        
System.out.println("1.Penjumlahan \n2.Pengurangan \n3.Perkalian");
        
System.out.print("Mode operasi yang dipilih = ");
        
int c Integer.parseInt(in.readLine());
        
        
int x 1;
        do
        {
            
System.out.println("Loading.............................");
            
            
x++;
        }
        while (
<= 50);
        
        
//System.out.println("\n\nMaaf mikir nya lama...");
        
System.out.println("\nAnda menjalankan kalkulator sederhana...");

        if (
== 1)
        {
            
int d a+b;
            
System.out.println("Hasil penjumlahan= "+d);
        }
        else
        if (
== 2)
        {
            
int d a-b;
            
System.out.println("Hasil pengurangan= "+d);
        }
        else
        if (
== 3)
        {
            
int d a*b;
            
System.out.println("Hasil perkalian= "+d);
        }
        }
        
catch (Exception e)
        {
            
System.out.println("Masukkan angka!!!");
        }
    }  

setelah kamu copy,,save as dengan nama Kalkulator.java,,kemudian compile dan jalankan....
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Google Search
Custom Search

All times are GMT +7. The time now is 01:10 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.