Hey everyone,
I'm new at this.. so please bear with me.
Anyway, I'm really confused.
I'm supposed to convert the first character of the String firstName to upper case.
Problem is... I have no idea how to :-/
I've done so much research and reading and still nothing.
Please help me.
Thanks in advance!
This is my code;
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
char firstSymbol;
// First and Last Name
String firstName="mickey";
String lastName="mouse";
System.out.println(lastName + "," + firstName);