java ile Vize ve Final notu girilen öğrencinin ortalamasını hesaplayan ve sonucu yazdıran, ayrıca ortalama ve Final notunun 50′ den yukarı olması durumunda ekranda Geçti, değilse Kaldı yazdıran Java Kodları ve ekran çıktısı.
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 35 36 37 38 39 40 41 | /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package javaapplication1; /** * * @author Lenovo */ import java.util.Scanner; public class JavaApplication1 { /** * @param args the command line arguments */ public static void main(String[] args) { Scanner reader = new Scanner(System.in); int vizeNot,finalNot; double ortalama; String durum=""; System.out.print("Vize Notunuzu Girin : "); vizeNot=reader.nextInt(); System.out.print("Final Notunuzu Girin : "); finalNot=reader.nextInt(); ortalama=vizeNot*0.4+finalNot*0.6; if(ortalama>=50 && finalNot>=50){ durum="Geçti"; } else{ durum="Kaldı"; } System.out.println("Ortalama : " + ortalama); System.out.println("Durumunuz: " + durum); } } |
Yorum Yap