#include <iostream>
usingnamespace std;
int main()
{
int x,y;
float z;
cout << "Enter three numbers: ";
cin >> x >> z >> y;
y = x + static_cast<int>(z);
x = static_cast<int>(z+1);
cout << x << "\t" << y << "\t" << z;
}
I need to know can I assume x = 4.5, y = 8.6 & z = 9?