subject

Which option is better? Option 1:
double d1 = 0.1; double d2 = 0.2; double d3 = 0.3; double x = (d1 + d2) + d3 ; double y = d1 + (d2 + d3); if (x == y) {System. out. println("Equal");}

Option 2:
double d1 = 0.1; double d2 = 0.2; double d3 = 0.3; double x = (d1 + d2) + d3 ; double y = d1 + (d2 + d3); double z = x - y; double epsilon = 1E-5; if (java. lnag. Math. abs(z) < epsilon) {System. out. println("Equal");}

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 09:00
Meenu wants to create a high quality drawing in a variety of colours. which device should she use for the same?
Answers: 1
question
Computers and Technology, 22.06.2019 18:00
Write a method named addall that could be placed inside the hashintset class. this method accepts another hashintset as a parameter and adds all elements from that set into the current set, if they are not already present. for example, if a set s1 contains [1, 2, 3] and another set s2 contains [1, 7, 3, 9], the call of s1.addall(s2); would change s1 to store [1, 2, 3, 7, 9] in some order. you are allowed to call methods on your set and/or the other set. do not modify the set passed in. this method should run in o(n) time where n is the number of elements in the parameter set passed in.
Answers: 2
question
Computers and Technology, 23.06.2019 00:30
Quick pl which one of the following is considered a peripheral? a software b mouse c usb connector d motherboard
Answers: 1
question
Computers and Technology, 23.06.2019 19:30
Of the following pieces of information in a document, for which would you most likely insert a mail merge field?
Answers: 3
You know the right answer?
Which option is better? Option 1:
double d1 = 0.1; double d2 = 0.2; double d3 = 0.3; double x...
Questions
question
Social Studies, 18.02.2021 17:10
question
Engineering, 18.02.2021 17:10
question
Physics, 18.02.2021 17:10
Questions on the website: 13722360