what is the output THE USER INPUT IS: 87 45 for the CODE THAT FOLLOWS: #include using namespace std; class twoNums { public : void setOne ( int ); // sets the private member one to the value of the...



what is the output





THE USER INPUT IS: 87   45   for the CODE THAT FOLLOWS:



#include



using

namespace
 std;



class
 twoNums



{



public
:




void
 setOne (
int
);   // sets the private member one to the value of the parameter




void
 setTwo (
int
);  //  sets the private member two to the value of the parameter




void
 nicePrint();    //  prints the values of the both private members,
one
first followed by
two,



                                      //  with 2 blank-spaces between then moves to a new line



private
:




int
 one;




int
 two;



};



int
 main( )



{

cout


"==========\n"
;





twoNums

*ptr;





int

numONE, numTWO;



                          ptr =

new
twoNums
;






ptr->setOne(numTWO);



                        ptr->setTwo(numONE);



                        ptr->nicePrint();






                        cout


"Please input two numbers separated by a space."


endl;



                                    cin

>>

numTWO

>>

numONE;






                        ptr->setOne(numTWO);



                        ptr->setTwo(numONE);



                        ptr->nicePrint();



system (“Pause”);



return 0;  }



Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here