C# HELP Can anyone Explain it please ??? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

C# HELP Can anyone Explain it please ???

i didn't know how is this possible please somebody can explain how is this answer??? question in screenshot: https://ibb.co/k9Ax05

26th Jun 2017, 12:04 PM
MrApr1
1 Answer
+ 1
x=f.x; //x=6 // useless line. This is not going to be used in example f.y=y;//f.y=9; //f.y is changed to 9 z = f.z;//z= 3 //z is change to 3 f.x+f.y*z;//8+9*3 = 8 + 27 = 35 first multiple 9*3 second add 8 (because of order of mathematical operation) That makes the answer 35. (LOL I tried to press "end now", it did not work)
26th Jun 2017, 7:55 PM
sneeze
sneeze - avatar