Skip to content

Commit d5123cd

Browse files
committed
added other files used during presentation
1 parent 173275f commit d5123cd

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Add01To02.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
There are 10 kinds of people
3+
in this world:
4+
5+
Those who understand binary
6+
and those who don't.
7+

0 commit comments

Comments
 (0)