+ 1
User define function
Pls some should help me solve for this X*y/x%y*y
10 odpowiedzi
+ 1
thank you bro
+ 1
Do you want me to define a function of it? In which programming language?
+ 1
Actually x*y/x%y*y does not need a function definition, as the result would always be 0, but here is the program:
https://code.sololearn.com/c8iQZ6BCXT65/?ref=app
+ 1
thank bro
+ 1
i appreciate your help
+ 1
That was not much.
0
Because *, / and % have the same operation precedence, we can solve operations from left to right.
We can break x*y/x%y*y into 4 parts:
x*y=xy
xy/x=y
y%y=0
0*y=0
0
Easy thing 👍
0
can you write the whole code for me please?
0
java please