From 5167ca886bf731c5fd99f9d31dec8431da36b8f2 Mon Sep 17 00:00:00 2001 From: kukemuna Date: Wed, 21 Feb 2024 14:40:48 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- cash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cash.c b/cash.c index 6f3db09..e7d4595 100644 --- a/cash.c +++ b/cash.c @@ -11,7 +11,7 @@ int main(void) do { - cents = get_int("Cents owed: "); + cents = get_int("Change owed: "); } while (cents < 0); @@ -26,7 +26,7 @@ int main(void) pennies = cents % 5; cents = quarters + dimes + nickels + pennies; - printf("cents: %i\n", cents); + printf("%i\n", cents); return 0; }