Klavyeden girilen iki notun ortalamasını alıp hesaplayan program.
import java.util.Scanner;
public class Unit3Ex1234 {
public static void main(String[] args) {
// TODO Auto-generated method stub
double not1, not2;
double ort;
Scanner inp=new Scanner(System.in);
System.out.print("Not 1 giriniz....");
not1=inp.nextDouble();
System.out.println("Not 2 giriniz...");
not2=inp.nextDouble();
ort=(not1+not2)/2;
System.out.print("Öğrencinin ortalaması : "+ ort);
if(ort>=70)
System.out.println("Geçti..");
else
System.out.println("Kaldı..");
}
}