I need to transfer these problems into a virtual console app that starts with option strict on and module program module main A
child's parents promise to give the child $ on her twelfth birthday and double the gift on every subsequent birthday until the gift exceeds $ Write a console application program to determine how old the girl will be when the last amount is given and what is that exact amount, and the total amount she would have received including the last gift, through all those years. Use the "FormatCurrency" function to make sure output is displayed properly.
Solve a problem that has the user continually entering integers, one at a time, and these integers need to be in the range of to and calculates their sum until the sum is over When done the sum and last numbered entered should be displayed. Need to also make sure the number is between and If enter a number outside this range, then display an error message to user and do not include the entered number in the summation.
A problem that has a user enter positive numbers and keeps record of how many even numbers are entered. When user enters problem stops and then displays the number of even numbers entered. For example, if user enters and then problem would display something like "User entered even numbers". Also do the following:
Need to first verify that entered integer is a numeric string, if not, display error message telling this then have user reenter another number. This may require another loop within the outer loop.
A problem that has user continue to enter weight of people and keeps a running total weight of all the people and also keeps track of the number of people entered. This will continue until a weight entered is less than or equal to zero. Problem will then display the average weight of all the people.