C# Program to Calculate Change Using the Largest Possible Coins and Bills

This C# program is designed to calculate the change that a customer should receive after making a purchase. It assumes that the store has an unlimited amount of coins and bills, including denominations of 100, 50, 20, 10, 5, 2, and 1 units. The program will ask for the price of the item being purchased and the amount paid by the customer, and then calculate the change by using the largest possible denominations first.

The program works by finding the largest denomination less than or equal to the remaining change and subtracting it until the change is completely distributed. It ensures that the smallest amount of coins and bills are given as change, which is both efficient and practical. For example, if the price is 44 and the customer pays 100, the program will provide 50, 5, and 1 as the change.



Group

C# Flow Control Basics

Objective

Write a C# program to give change for a purchase, using the largest possible coins (or bills). Suppose we have an unlimited amount of coins (or bills) of 100, 50, 20, 10, 5, 2, and 1, and there are no decimals.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    static void Main()
    {
        // Ask for the price of the item
        Console.Write("Price? ");
        int price = int.Parse(Console.ReadLine()); // Read the price from the user
        
        // Ask for the amount paid by the customer
        Console.Write("Paid? ");
        int paid = int.Parse(Console.ReadLine()); // Read the amount paid from the user

        // Calculate the change to be given
        int change = paid - price; 
        
        // Check if the amount paid is less than the price
        if (change < 0)
        {
            Console.WriteLine("Not enough money paid!");
            return;
        }

        // Output the total change
        Console.WriteLine($"Your change is {change}:");

        // List of coin/bill denominations in descending order
        int[] denominations = { 100, 50, 20, 10, 5, 2, 1 };

        // Loop through each denomination and determine how many times it can be used
        foreach (int denomination in denominations)
        {
            while (change >= denomination)
            {
                Console.Write(denomination + " "); // Print the denomination
                change -= denomination; // Subtract the denomination value from the remaining change
            }
        }
        
        Console.WriteLine(); // Move to the next line after printing all denominations
    }
}

 Output

//Example 1:
Price? 44
Paid? 100
Your change is 56:
50 5 1 

//Example 2:
Price? 1
Paid? 100
Your change is 99:
50 20 20 5 2 2

//Example 3 (Edge Case):
Price? 60
Paid? 100
Your change is 40:
20 20

//Example 4 (Error Case):
Price? 200
Paid? 100
Not enough money paid!

Share this C# Exercise

More C# Practice Exercises of C# Flow Control Basics

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.