Division (mathematics)

"----"-divide
number

1000
----
2
----
25
----
2
----
10

In mathematics how to solve this calculation?
In C++ how to solve this calculation?(cout << "1000/2/25/2/10=" << 1000/2/25/2/10 << endl;)

Is the "TRUE" result 1?

I am sorry if I offend something or somebody with my question.
Last edited on
What do you mean "TRUE" result?
Does 1000/2/25/2/10 equal 1? Yes.

In mathematics how to solve this calculation?

First divide 1000 by 2 (gives 500)
Divide the result (500) by 25 (gives 20)
Divide the result (20) by 2 (gives 10)
Divide the result (10) by 10 (gives 1)
Thank you.
Topic archived. No new replies allowed.