Doç. Dr. GÜRAY SONUGÜR

Doç. Dr. Güray SONUGÜR – Öğrenci Bilgi Paylaşım Platformu

Klavyeden Girilen İki Sayıyı Karşılaştırma

import javax.swing.JOptionPane;

public class Metot2 {

public static void main(String[] args) {
int sayi1 = Integer.valueOf(JOptionPane.showInputDialog(“Birinci Sayıyı Girin”));
int sayi2 = Integer.valueOf(JOptionPane.showInputDialog(“İkinci Sayıyı Girin”));

sonuc(sayi1, sayi2); // bu iki değer sonuc metoduna gönderildi
}
private static void sonuc(int a, int b)
{
int enb;
if (a > b)
enb = a;
else
enb = b;
JOptionPane.showMessageDialog(null, “En Büyük Sayı:” + enb) ;
//System.out.println(“En Büyük Sayı: ” + enb);
}
}