Question
Create program in C# using Console App Projects in Visual Studios. A certain college only accepts prospective students if one of the following conditions is
Create program in C# using Console App Projects in Visual Studios.
A certain college only accepts prospective students if one of the following conditions is true: (a) their high school GPA is greater than or equal to 3.0 AND their entrance admission test score is greater than or equal to 60, OR (b) their entrance admission test score is greater than or equal to 90 (regardless of GPA). Write a program named Admissions that prompts a user for a GPA and entrance admissions test score, and then displays whether the users admission to the college is accepted or denied. Use nested if-else statements to solve this problem.
Write a program named Admissions that prompts a user for a GPA and entrance admissions test score, and then displays whether the users admission to the college is accepted or denied. Use nested if-else statements to solve this problem.
Example output test cases might be:
Enter grade point average: 3.0
Enter test score: 75
This students admission is ACCEPTED.
Enter grade point average: 3.5
Enter test score: 55
This students admission is DENIED.
Enter grade point average: 2.5
Enter test score: 88
This students admission is DENIED.
Enter grade point average: 2.0
Enter test score: 91
This students admission is ACCEPTED.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started