We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 173275f commit d5123cdCopy full SHA for d5123cd
Add01To02.java
@@ -0,0 +1,11 @@
1
+class Add01To02 {
2
+ public static void main(String[] args) {
3
+ System.out.println("\n> 0.1 + 0.2 == 0.3");
4
+ System.out.println( 0.1 + 0.2 == 0.3 );
5
+
6
+ System.out.println("\n> 0.1 + 0.2");
7
+ System.out.println( 0.1 + 0.2 );
8
9
+ System.out.println();
10
+ }
11
+}
types
@@ -0,0 +1,7 @@
+ There are 10 kinds of people
+ in this world:
+ Those who understand binary
+ and those who don't.
0 commit comments