exceedinglife Posted February 10, 2019 Share Posted February 10, 2019 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); } Quote Link to comment https://forums.phpfreaks.com/topic/308300-determine-if-a-number-can-be-made-with-prepicked-numbers-and-times/ Share on other sites More sharing options...
requinix Posted February 10, 2019 Share Posted February 10, 2019 That description doesn't really describe it. How about, what output are you trying to get and how did you (a human being) figure it out? Quote Link to comment https://forums.phpfreaks.com/topic/308300-determine-if-a-number-can-be-made-with-prepicked-numbers-and-times/#findComment-1564346 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.