When you turn in an assignment to be graded in this class, you are making the claim that you neither gave nor received assistance on the work you turned in (except, of course, assistance from the instructor).
Project Description
Using the windows32 framework, write a program that will input an integer targetValue, and calculate the value of nbrTerms, where nbrTerms is the smallest integer such that
12 + 22 + 32 + ... + nbrTerms2 ≥ targetValue
For example, if you input 50, then the program would display 5 since 1 + 4 + 9 + 16 = 30, but 1 + 4 + 9 + 16 + 25 = 55.
Other requirements:
Use appropriate prompts and labels
Prompt for targetValue until the user enters a positive value
Comment your code appropriately - including a comment block at the beginning of the file with your name, course information, and program information.