Finished Solution, Throwing & Catching Exceptions, repo at 9f4de32
parent
5ea0c1bd54
commit
15bd8fcbb5
|
@ -15,8 +15,14 @@ namespace GradeBook
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddGrade(double grade)
|
public void AddGrade(double grade)
|
||||||
|
{
|
||||||
|
if (grade <= 100 && grade >= 0)
|
||||||
{
|
{
|
||||||
this.grades.Add(grade);
|
this.grades.Add(grade);
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
throw new ArgumentException($"Invalid {nameof(grade)}");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddLetterGrade(char letter)
|
public void AddLetterGrade(char letter)
|
||||||
|
|
|
@ -16,8 +16,7 @@ namespace GradeBook
|
||||||
var book = new Book("Jason's Grade Book");
|
var book = new Book("Jason's Grade Book");
|
||||||
string input;
|
string input;
|
||||||
|
|
||||||
bool if_continue = true;
|
while (true)
|
||||||
while (if_continue)
|
|
||||||
{
|
{
|
||||||
Console.WriteLine("Give input: ");
|
Console.WriteLine("Give input: ");
|
||||||
input = Console.ReadLine();
|
input = Console.ReadLine();
|
||||||
|
@ -26,10 +25,26 @@ namespace GradeBook
|
||||||
Console.WriteLine("Receiving termination signal; Termiate program");
|
Console.WriteLine("Receiving termination signal; Termiate program");
|
||||||
break;
|
break;
|
||||||
} else
|
} else
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
Console.WriteLine($"Received: {input}");
|
Console.WriteLine($"Received: {input}");
|
||||||
book.AddGrade(Convert.ToDouble(input));
|
book.AddGrade(Convert.ToDouble(input));
|
||||||
}
|
}
|
||||||
|
catch (ArgumentException ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(ex.Message);
|
||||||
|
}
|
||||||
|
catch (FormatException ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(ex.Message);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
// Will always run for all catch scenario
|
||||||
|
Console.WriteLine("Always Done");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var stats = book.GetStatistics();
|
var stats = book.GetStatistics();
|
||||||
|
|
Loading…
Reference in New Issue