This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Ad

Sabtu, 14 Juli 2012

Menampilkan Bilangan Terbesar, Terkecil dengan Java Programming

import java.util.Scanner;public class nomor2 {    public static void main (String []args) {    Integer totalgenap,totalganjil,totalpositiv,totalnegatif,nilai;    int max=Integer.MIN_VALUE;    int min=Integer.MAX_VALUE;    Scanner input = new Scanner(System.in);    totalgenap=0;    totalganjil=0;    totalpositiv=0;    totalnegatif=0;  ...

Source Code Menampilkan Bilangan Genap, Ganjil, Positif, Negatif dengan Java

import java.util.Scanner;public class nomor1 {    public static void main (String []args) {    Integer genap,ganjil,positiv,negatif,nilai,total;    Scanner input = new Scanner(System.in);    genap=0;    ganjil=0;    positiv=0;    negatif=0;    total=0;    do {        System.out.print("Nilai...