diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-04 04:05:09 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-04 04:05:09 +0000 |
commit | c1aafb4dd7fd3d9bab874c722e0c3e0494a7cd6e (patch) | |
tree | 2a5d45292e1d5ce43711f32f2b63526bea56ec75 /wk1/pset1 | |
parent | 5ef844389e13c0dfd4b5c3865b6acfd480752428 (diff) |
Sun, Dec 3, 2023, 8:05 PM -08:00
Diffstat (limited to 'wk1/pset1')
-rw-r--r-- | wk1/pset1/cash/cash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk1/pset1/cash/cash.c b/wk1/pset1/cash/cash.c index ecb1fe9..13c6889 100644 --- a/wk1/pset1/cash/cash.c +++ b/wk1/pset1/cash/cash.c @@ -42,7 +42,7 @@ int get_cents(void) { i = get_int("How many cents? "); } - while(i < 0); + while (i < 0); return i; } |