Skip to content

Commit 5b3d44e

Browse files
committed
fix: make B loop closer to C
1 parent 96abad7 commit 5b3d44e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/punishment_b.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
main() {
22
auto count;
33
extrn putstr;
4-
for (count=0; count < 500; count++)
4+
for (count=1; count <= 500; count++)
55
putstr("I will not throw paper airplanes in class.*n");
66
}

0 commit comments

Comments
 (0)