Write a Java program to find the total normalised score (T.N.S) for graduate sch
ID: 3882238 • Letter: W
Question
Write a Java program to find the total normalised score (T.N.S) for graduate school admissions (sample data of four students given below) Use the formula given below to calculate the total normalised score: T.N.S. = CGPA*(34.0) + GRE Score + (100/UIAR) Using the above calculated TNS determine which of the colleges can a specific student get into (best possible school), if the entry requirements of the colleges is given below. Input should be like: Student Name + CGPA + GRE Score + UIAR Output Should be like: Student Name + T.N.S + Accepted in 'Graduate School Name'.Explanation / Answer
import java.io.*;
import java.util.*;
public class TNS{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
String line = sc.nextLine();
String school = "";
String line2 = "";
for (int i = 0; i<line.length(); i++){
if (line.charAt(i) == '+'){
line2 = line2 + ',';
}
else{
line2 = line2 + line.charAt(i);
}
}
String [] tokens = line2.split(",");
String name = tokens[0];
double CGPA = Double.parseDouble(tokens[1]);
int gre = Integer.parseInt(tokens[2]);
int uiar = Integer.parseInt(tokens[3]);
double tns = CGPA * (34.0) + gre + (100/uiar);
if (tns>=625 && tns <=780)
school = "Harvard University";
if (tns>=550 && tns <=574)
school = "Polytechnic University of Milan";
if (tns>=575 && tns <=599)
school = "University of Southern California";
if (tns>=600 && tns <=624)
school = "Carnegie Mellon University";
System.out.println(name+"+"+tns+"+Accepted in "+ school);
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.