So i am trying to implement a very simple program.
i want to set bobi to a variable but without using strings. I am thinking I can do it using just char.
this is what i have so far
System.out.println("Please Enter a four letter name");
char n =
char a =
char m =
char e =
System.out.print("His name is ");
System.out.print(n);
System.out.print(a);
System.out.print(m);
System.out.print(e);
with the program i have it is
your program: Enter four letter name:
user: b
user: o
user: b
user: i
I want to be able to enter in one input so its like this
program: Enter four letter name:
user: bobi
or is there a better way to approach