Develop an interactive program that reads a low value, a high value, and an increment value, ensures that the low value is less than or equal to the high value, and computes and prints a table of square and cube values from low to high at increments of increment.

Sample input-output :

Low value : 1
High value : 5
Increment : 1

Value Square Cube
1 1 1
2 4 8
3 9 27
4 16 64
5 25 125

ill try 2 do it but still cant solve it..by da way im new to c++..so help me