From d1c93073791ae3d2b12aa1febc69763df4762730 Mon Sep 17 00:00:00 2001 From: DLongman Date: Wed, 28 Mar 2018 15:33:15 -0600 Subject: [PATCH] Added a Folder and File For fun --- .DS_Store | Bin 0 -> 6148 bytes newFolder/.DS_Store | Bin 0 -> 6148 bytes newFolder/DemoChar.java | 18 ++++++++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 .DS_Store create mode 100644 newFolder/.DS_Store create mode 100644 newFolder/DemoChar.java diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..9e64759c9e6897b57d0b59d2b155ee86118a1301 GIT binary patch literal 6148 zcmeHKU2D`p6uq;%YIge)QK8^V9u*eZvMu|Xu2t-Vun=hxD{EqcI}$QWlHDN7LZ1B@ ze*X#|6#WnW6rbvuk1efjp9+FyZn$%9?#!7XC&_#e5gX3p4I-C_9Js_r8^swW>!qKv zhRL*mO!ZOHJ$g+c&EeMm2L

(DM`G^H6Gdw;vBcp0T4LcRPr9>VXy8;6G|iP~T! zR3R@Yr5JJk7vmdRJ%TsSXGB#oHDmmarYSGVUhfxcG+S4$UUS-=HF>$$JI{lOsDd&q zXT>ngpQ$?@Cy|LqVL4gFPlQO1;xO9dNi}wF-WORJ@+`@ZQ4jWc7K>^qW?5Vu1iHU{ z9+#7`dux;@b5KWNmhAC@M?B@_8>cO=vAe!l^!r;~ufMsm?0SpApx5;_`-A1u{pvWk z?`~~BemY&gefR#u$4{TXeE%WU!vBFEMA;34EBJ}v3^C_Ho~0sth1wN!#jt15& zlbLMt6`3pm+q~SJ0c!wDx+`9Nn44dBpV>i+7?sX@oZ|sKo^guDS@!nU-?bU+sq5?QYmI%OCNQe)1N^nM?#kKmZ- qFy=-&hiJvrXvJK3D?a{`SA5Rvwdt4|<%~x;RX+mGMJ57&LEs&_$s1z; literal 0 HcmV?d00001 diff --git a/newFolder/DemoChar.java b/newFolder/DemoChar.java new file mode 100644 index 0000000..ea53254 --- /dev/null +++ b/newFolder/DemoChar.java @@ -0,0 +1,18 @@ +/******************************* +* Author: Daniel Longman +* Demo the use of characters +*****************************/ + +public class DemoChar { + public static void main(String[] args) { + String title = "Demo Char:"; + System.out.printf("%S%n", title); // %S prints uppercase text + + char initial = 'D'; + System.out.printf("Initial: %c %d U+%04X %n", + initial, (int)initial, (int)initial); + + char colon = '\u003A'; + System.out.println("colon: " + (int)colon); + } +} \ No newline at end of file