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;

15th Nov 2019, 3:16 PM
TeaserCode
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
15th Nov 2019, 5:46 PM
Charitra
Charitra - avatar