create a rectangle class with attributes length and width, each of which defaults to 1. provide member functions that calculate the perimeter and the area of the rectangle. also provide set and get functions for the length and width attributes. the set functions should verify that legnth and width are each floating-point numbers larger than 0.0 and less than 20.0
thank you.
Input validation can be interesting. The validation statement in the assignment is part of the set functions, so that simplifies things. Because you are using a double for an argument, you are guaranteed a floating point value in the set function, so that part is taken care of for you. What you need to do is make sure the value is within the legal range before making the assignments in lines 74 and 83.
Validating user input to make sure that it is a legal floating point value (no letters, at most 1 period, etc.) is a more complex endeavor and probably not part of the set function.