Why does this program print "Solo" and not "Learn" | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Why does this program print "Solo" and not "Learn"

float a=0.7; if(a<0.7) cout<<"Solo"<<endl; else cout<<"Learn"<<endl;

2nd Sep 2017, 6:09 PM
Shashank V Ray
Shashank V Ray - avatar
29 Answers
+ 7
Floating point precision is not accurate, never compare equality directly with them. 0.7 as a floating point could be 0.6999999.. Hence, is less than 0.7. If you want to compare floating points try to remove the possible error gap. Something like: if (a < 0.7 - 0.000001) Should do.
2nd Sep 2017, 6:35 PM
Rrestoring faith
Rrestoring faith - avatar
+ 5
I agree with @James if the case was if (a <= 0.7){ cout << " Solo" // would print }
2nd Sep 2017, 6:24 PM
Manual
Manual - avatar
+ 5
@Shashank that is true! so if I say 0.2 > 0.7 it is false The compiler checks and when true or false is known this happens if( 0.2 < 0.7){ // true } else { //false }
2nd Sep 2017, 6:45 PM
Manual
Manual - avatar
+ 5
@Shashank when you said 0.7 was greater You knew there was only one answer The compiler is the same if "if" is CORRECT ONLY it code inside the if is executed if "if" is WRONG ONLY the code in else is executed
2nd Sep 2017, 6:54 PM
Manual
Manual - avatar
+ 4
I can provide an example. It will be completed shortly.
2nd Sep 2017, 6:27 PM
Manual
Manual - avatar
+ 4
Another example - enter a float ex: 0.4 https://code.sololearn.com/cWKuIrmztc6s/?ref=app
2nd Sep 2017, 7:03 PM
Manual
Manual - avatar
+ 3
That is because only one case is seleted in the if/else case not both.
2nd Sep 2017, 6:13 PM
Manual
Manual - avatar
2nd Sep 2017, 6:36 PM
Manual
Manual - avatar
+ 3
@Shashank Which is greater? 0.2 or 0.7
2nd Sep 2017, 6:41 PM
Manual
Manual - avatar
+ 3
It is because of precision error. Like when you store 0.7 as float, it will be stored in binary form in the memory with extra padding of bits e.g. 0.69999999 and when you compare it with exact 0.7, the result is true bcoz 0.69999999 is less than 0.7 Hence, "Solo" is printed. If you compare it with 0.7f "Learn" will print bcoz this 0.7f too will be stored as 0.69999999
2nd Sep 2017, 7:02 PM
Kartikey Sahu
Kartikey Sahu - avatar
+ 3
you took int a = 0.7; a will be 0 because int never takes floating point. hence 0 < 0.7 will be true if you give int a = 1.7; a will be 1 if .... int a = 5.0; a will be 5
2nd Sep 2017, 7:14 PM
Kartikey Sahu
Kartikey Sahu - avatar
+ 3
Floating point values are not precise.
2nd Sep 2017, 7:24 PM
Rrestoring faith
Rrestoring faith - avatar
2nd Sep 2017, 7:28 PM
Kartikey Sahu
Kartikey Sahu - avatar
+ 2
@manual: 0.7 obviously!
2nd Sep 2017, 6:42 PM
Shashank V Ray
Shashank V Ray - avatar
+ 2
If the if statement is true, the else is not printed.
2nd Sep 2017, 6:53 PM
Rrestoring faith
Rrestoring faith - avatar
+ 2
kartikey: i tried on all data types! Why isn't the else part getting executed! Why and how is a decimal value treated to be less than itself?
2nd Sep 2017, 7:13 PM
Shashank V Ray
Shashank V Ray - avatar
+ 1
@Manual: Sry I didn't get you! Would you mind being more specific and explain with a reason for your solution! Thank you
2nd Sep 2017, 6:18 PM
Shashank V Ray
Shashank V Ray - avatar
+ 1
from Your Code You didnt specify What it will print when you input value of a =0.7 You only inputed if (a <0.7) you will see if you put lower value like 0.6 it will print 'learn' why dont you give it a less than nd Equal to Value
2nd Sep 2017, 6:22 PM
promise orazulike
promise orazulike - avatar
+ 1
Ok then try the same program by replacing ""a=0.7"" by ""a=0.2"" and ""if(a<0.7)"" by ""if(a<0.2) then you'll get learn as output. how's that possible
2nd Sep 2017, 6:27 PM
Shashank V Ray
Shashank V Ray - avatar
+ 1
@Restoring_faith: I appreciate your answer! but that problem of not printing the else part prevails even after changing the data type to int
2nd Sep 2017, 6:37 PM
Shashank V Ray
Shashank V Ray - avatar