Skip to content

Commit b4923a9

Browse files
committed
Updated guided project instructions to address reported issue
1 parent f89d288 commit b4923a9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

learn-pr/wwl-language/guided-project-arrays-iteration-selection/includes/2-prepare.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You're developing a Student Grading application that automates the calculation o
1515

1616
- Include extra credit assignment scores in the student's scores array.
1717
- Extra credit assignments are worth 10% of an exam score (when calculating the final numeric grade).
18-
- Add extra credit assignment scores to the student's total exam score before calculating the final numeric grade.
18+
- Add extra credit assignment scores to the student's total exam score before calculating the final numeric grade. Rounding errors are acceptable in calculations.
1919

2020
- Your application needs to automatically assign letter grades based on the calculated final score for each student.
2121
- Your application needs to output/display each student’s name and formatted grade.

learn-pr/wwl-language/guided-project-arrays-iteration-selection/includes/5-exercise-implement-selection-statements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ You will be using these extra credit scores and the application requirements pro
407407
1. To create the equation that adds an extra credit score to the sum, enter the following code:
408408

409409
```csharp
410-
// add the extra credit points to the sum - bonus points equal to 10% of an exam score
410+
// add the extra credit points to the sum - bonus points equal to 10% of an exam score. rounding errors are acceptable
411411
sumAssignmentScores += score / 10;
412412
```
413413

@@ -472,7 +472,7 @@ You will be using these extra credit scores and the application requirements pro
472472
sumAssignmentScores += score;
473473

474474
else
475-
// add the extra credit points to the sum - bonus points equal to 10% of an exam score
475+
// add the extra credit points to the sum - bonus points equal to 10% of an exam score. rounding errors are acceptable
476476
sumAssignmentScores += score / 10;
477477
}
478478

0 commit comments

Comments
 (0)