Untitled

                Never    
Java
       
import java.util.Scanner;

public class main7 {
    public static void main(String[] args) {
//3.5
        Scanner s = new Scanner(System.in);
        System.out.println("please enter bagrot avg");
        double bAvg = s.nextDouble();
        System.out.println("please enter psycho grade");
        int pGrade  = s.nextInt();
        System.out.println("please enter englishe part grade");
        int eGrade  = s.nextInt();
        System.out.println("please enter grade for quntety section");
// all the conditions to check if he can get in
// if the avg is more then// your in        
        int qGrade  = s.nextInt();
        if (bAvg>=102){
            System.out.println("you are in");
//else if this conditions you are in            
        }
        else if (pGrade>=700&&eGrade>=120&&qGrade>=145){
            System.out.println("you are in");
        }
////else if this conditions you are in                    
        else if ((0.8*pGrade+1.2*bAvg)>=600){
            System.out.println("you are in");
        }
// no more options your not in        
        else{
            System.out.println("you are out");
        }
    }
}

Raw Text