Answered Same DayJan 08, 2021

Answer To: Quote

Arun Shankar answered on Jan 10 2021
156 Votes
C sharp solutions/Admission.cs
using System;
class MainClass
{
public static void Main (string
[] args)
{
string userInput;
double gpa, score;
// Accept gpa as input
Console.WriteLine("Enter grade point average: ");
userInput = Console.ReadLine();
gpa = Convert.ToDouble(userInput);
// Accept test score as input
Console.WriteLine("Enter test score: ");
userInput = Console.ReadLine();
score = Convert.ToDouble(userInput);
if(
((gpa>=3.0) && (score>=60)) ||
((gpa<3.0) && (score>=80))
)
Console.WriteLine("Accepted");
else
...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here