0
How to solve the code; step by step, please
x = 25; y = x % 14(++x); z = y - x(4*y); cout << x + y*z;
2 Antworten
+ 3
int x,y,z;
x=5;
y=x%(14*(++x));
z=y-(x*(4*y));
cout<<(x+(y*z));
This is what you want...This is error free...so you can rely on my code