automated commit by check50 [check50=True]

This commit is contained in:
kukemuna 2024-02-21 14:40:48 +02:00
parent f4b61c6360
commit 5167ca886b
1 changed files with 2 additions and 2 deletions

4
cash.c
View File

@ -11,7 +11,7 @@ int main(void)
do do
{ {
cents = get_int("Cents owed: "); cents = get_int("Change owed: ");
} }
while (cents < 0); while (cents < 0);
@ -26,7 +26,7 @@ int main(void)
pennies = cents % 5; pennies = cents % 5;
cents = quarters + dimes + nickels + pennies; cents = quarters + dimes + nickels + pennies;
printf("cents: %i\n", cents); printf("%i\n", cents);
return 0; return 0;
} }