0
How to do all arithmetic operations in c++?
2 odpowiedzi
0
use operators, such as +, -, *, / and so on.
so for example, you have two variables: x and y.
if you want their sum, it is x+y. the same goes with other examples.
0
Yeah dear..all arithmetic operations use in c++
Let A and B two variables..if you want their sum ,multiple,divisions ....x+y; and x*y; or. X/y;