Kullanıcının girdiği 3 sayıdan büyük olanını ekrana yazdırma
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
public static void main(String[] args) { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int a=0, b=0, c=0; System.out.println("Bir sayı giriniz"); try { a = Integer.parseInt(br.readLine()); System.out.println("Bir sayı giriniz"); b = Integer.parseInt(br.readLine()); System.out.println("Bir sayı giriniz"); c = Integer.parseInt(br.readLine()); } catch (NumberFormatException e) { System.out.println("Sayı Giriş Hatası"); } catch (IOException e) { System.out.println("Okuma Hatası"); } if (a > b && a > c) { System.out.println(a+" sayısı büyüktür."); } else if (b > a && b > c) { System.out.println(b+" sayısı büyüktür."); } else { System.out.println(c+" sayısı büyüktür."); } } |
Add Comment