/***************************************************************************** * Outputs perfect squares between a range. * * Written: November 14, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Ronald Roberts //Program #47 //14NOV01 #include #include #include int main() { int i, start, finish, sentinel, checker=0, sqtt; double sqrtt; double num; cout<<"Where will you start the loop? "; cin>>start; cout<<"Where will you end the loop? "; cin>>finish; cout<<"How many perfect squares to print? "; cin>>num; cout<<" "<