Really stupid question, but what's the relevant to integer for letters. This is an example - when I write 1, the console prints 2. What I want to do is instead of using numbers, to use letters. For example when I write "a" it prints "b", as int num only allows me to use numbers .. for obvious reasons. Sorry about the question again, really new into Java.
int num1;
Scanner input = new Scanner(System.in);
System.out.println("First number");
num1 = input.nextInt();
if (num1 == 1);
{
System.out.println("2");
}