#include int main() { float a,b; float *float_ptr; a= 169.8; b=237.5; char Continue='Y'; do { cout<<"The two numbers are "<=b) { float_ptr=&a; } else { float_ptr=&b; } cout<<"The largest of the two numbers is " <<*float_ptr<>Continue; if(Continue=='Y'||Continue=='y') continue; else break; }while((a>1.0)&&(b>1.0)); return 0; }