// // Using StringIn // import FormatIO.*; public class Demo01e { public static void main(String[] args){ int n; System.out.println("This is n: " + n); } } // // What happens if something isnt initialised? // Could I do the following? // - int n; int m; n=m; m=n; System.out.println(n); // // Why n for an integer? // Are there any other conventions lurking about? // Where did they come from? //