You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: problems/calendar/index.md
+1-9Lines changed: 1 addition & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,17 +100,9 @@ Don't forget that you need to write function **prototypes** above main to be abl
100
100
// actual implementation of this function
101
101
}
102
102
103
-
## Testing
104
-
105
-
You can use `check50` to find obvious mistakes, such as months starting on the wrong weekdate. But you should be able to easily test your program manually by `make`ing and running it.
106
-
107
-
check50 -l minprog/checks/2025/calendar
108
-
109
-
Before you hand in your solution, also check for obvious style mistakes using `style50`. But don't overdo it. You'll be doing a code review again next week.
110
-
111
103
### What is <padding>?
112
104
113
-
When `check50` reports the following:
105
+
When submitting, the check might report the following:
Copy file name to clipboardExpand all lines: problems/conversion/index.md
-8Lines changed: 0 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,11 +98,3 @@ Je programma moet uiteindelijk werken zoals in de voorbeelden hieronder.
98
98
## Hoe testen
99
99
100
100
Klaar? Geeft je code de juiste output voor de verschillende combinaties van invoer die mogelijk zijn? En hou je ook goed rekening met foutieve invoer? Als je denkt dat je klaar bent, dan zijn dat de eerste dingen om te checken.
101
-
102
-
Je kunt ook het volgende commando geven in de Terminal om de correctheid van je programma na te gaan. Zorg dat je altijd zelf ook compileert, fouten oplost en handmatig test, want deze tool is bij volgende vakken niet beschikbaar!
103
-
104
-
check50 -l minprog/checks/2022/conversion
105
-
106
-
En je kunt alvast de stijl van je programma laten controleren op een paar aspecten die vaak misgaan. Die kun je dan verbeteren, maar dit is niet verplicht voor het inleveren van de opdracht.
Copy file name to clipboardExpand all lines: problems/figure/index.md
-7Lines changed: 0 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,10 +41,3 @@ Now that you have defined the figure in terms of 1) what it looks like and 2) a
41
41
42
42
Create a file called `figure.c` and implement your program. Make sure that it, like `mario.c`, only accepts heights that are _reasonable_ for the figure that you implemented in code.
43
43
44
-
## How to Test Your Code
45
-
46
-
Execute the below to evaluate the correctness of your code using `check50`. But be sure to compile and test it yourself as well!
47
-
48
-
check50 -l minprog/checks/2022/figure
49
-
50
-
Check50 cannot check that your figure is printed according to consistent rules, but it will warn you if you have errors or if you do not perform input validation. After submitting, your program will be checked visually for adherence to the requirements.
Copy file name to clipboardExpand all lines: problems/filter/less/filter.md
-8Lines changed: 0 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -234,11 +234,3 @@ Finally, the `blur` function should take an image and turn it into a box-blurred
234
234
## Hints
235
235
236
236
The values of a pixel's `rgbtRed`, `rgbtGreen`, and `rgbtBlue` components are all integers, so be sure to **round** any floating-point numbers to the nearest integer when assigning them to a pixel value!
237
-
238
-
## Testing
239
-
240
-
Be sure to test all of your filters on the sample bitmap files provided!
241
-
242
-
Execute the below to evaluate the correctness of your code using `check50`. But be sure to compile and test it yourself as well!
0 commit comments