<p>@FateGoneAwry: Admiring the lines of code </p>
<p>double chance = 0;
Scanner scan = new Scanner (System.in);</p>
<p>for (int i = 0; i < 3; i++)
{
System.out.print("In order, enter your SAT Math, Critical Reading, and Writing scores, hitting enter between scores: ");
int SAT = scan.nextInt();
if (SAT >= 750) chance += 2;
else if (SAT >= 700) chance++;
else if (SAT >= 650) chance+=0;
else chance -= 1;
}</p>
<p>for (int j = 0; j < 2; j++)
{
System.out.print("In order, enter your SAT II Math II and second SAT II scores, hitting enter between scores: ");
int SAT = scan.nextInt();
if (SAT >= 750) chance += 2;
else if (SAT >= 700) chance++;
else if (SAT >= 650) chance+=0;
else chance -= 1;
}</p>
<p>System.out.print("GPA (ignoring freshman year): ");
double grades = scan.nextDouble();
if (grades >= 3.7) chance++;
else if (grades >= 3.5) chance += 0;
else if (grades >= 3.0) chance -= 1;
else chance -= 2;</p>
<p>System.out.print(“On an integer scale of 0-10 (10 being you’re wearing a kilt right now and bleeding Tartan while 0 means you prefer Beavers to adorable dogs), inclusive, how much do you love CMU?”);
int love = scan.nextInt();
if (love>= 8) chance += 1;
else if (grades >= 5) chance += 0;
else chance -= 1;</p>
<p>System.out.println("How well did you convey your enthusiasm for CMU, if at all, in your essays? 1-10, inclusive as before: ");
int expressLove = scan.nextInt();
if (expressLove >= 8) chance += 2;
else if (expressLove >= 5) chance += 1;
else chance -= 0;</p>
<p>System.out.print("How many logged times did you come into contact with CMU? ");
int meet = scan.nextInt();
chance += (meet / 4);</p>
<p>//lols I was procrastinating on a physics project so I just wrote that. Maybe sometime I’ll add on to it or even finish it. Can’t say how accurate it would be, but if I really had the time, maybe I could actually do some research and polish it up to be at least semi-decent at predictions.</p>