What is printed by the following program? Suppose the input is: (8, 10, 11)
Miller 34 62.5
#include
#include
using namespace std;
const double CONVERSION = 3.5;
int main()
const int TEMP = 23;
string name;
int id;
int num;
double decNum;
double mysteryNum;
cout < “enter=”” last=”” name:=”” “;=””>
cin >> name;
cout < endl;=”” =””>
cout < “enter=”” a=”” two=”” digit=”” integer:=”” “;=””>
cin >> id;
cout < endl;=”” =””>
num = (id * TEMP) % (static_cast(CONVERSION));
cout < “enter=”” a=”” decimal=”” number:=”” “;=””>
cin >> decNum; cout < endl;=”” =””>
mysteryNum = decNum / CONVERSION – TEMP;
cout < “name:=”” “=””>< name=””>< endl;=”” cout=””>< “id:=”” “=””>< id=””>< endl;=”” cout=””>< “mystery=”” number:=”” “=””>< mysterynum=””>< endl;=””>
return 0;