0
How i can code this in c++ a*b-b*d
Guys can you code this in c++
2 ответов
+ 3
Shafi Miakhil
Show your attempts and delete all other duplicate question.
https://www.sololearn.com/discuss/2772376/?ref=app
https://www.sololearn.com/discuss/2772375/?ref=app
0
result = (a*b)-(b*d);
It's just like in math. Parentheses first.