Jump to content

Determine if a number can be made with prepicked numbers and times


exceedinglife

Recommended Posts

I have 2 arrays one of the types of numbers that will be used and the 2nd array is how many times that number can be used. I have a letter that determines what kind of method will be used I need to figure out how many times I can use a certain number from an array to determine a letter+number The ‘number’ is what I have to make with all the available numbers I can use. If the number cannot be made I would like to just say number cant be made or anything but allow the program to move on.

Here is what I have

 

	int[] picks = { 100, 50, 20, 10, 5, 1 };
	            int[] times = { 10, 10, 10, 10, 10, 10 };
	string choice = Console.ReadLine();
	else if (choice.Equals("D")) {
	Dispense(amt, billCounts);
	}
	
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.