Ask your own question, for FREE!
Computer Science 14 Online
OpenStudy (anonymous):

how to calculate in comp science im not aable to solve this 5+4/3*(5-3)/2

OpenStudy (anonymous):

do u know HTML

OpenStudy (anonymous):

its in C++

OpenStudy (anonymous):

Aand yes i knw HTML a lttl bit

OpenStudy (anonymous):

So what exactly are you trying to do? Just get the result of 5+4/3*(5-3)/2?

OpenStudy (anonymous):

If u take int value in c then output will be "6" coz 4/3 is treated as 1. And if you take it float then output will be "0" coz int float 4/3 will be treated as zero(0) and something divide by zero must give error but in case of floats 0 is displayed. If u want correct answer then take 4.0/3.0 for actual answer in float. These all are properties of float values.

OpenStudy (anonymous):

Also if you write: float a; a=4/5 or 3/9, 4/3 or any value then it would give you output as zero always as float needs 4.0 and 3.0 as input else it will display 0;

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!