+ 1
What's the issue with this program?
class FullName{ public static void main (String [] args) { String firstName, secondName; firstName = "Robert"; secondName = "Strovosky"; System.out.println("I'm " + fistName + secondName); } } It doesn't give out a result. š¢
6 Answers
+ 3
System.out.println("I'm " + firstName + secondName);
A typo on "firstName" there ...
+ 2
Thanks a lot š
š
+ 2
You're welcome : )
+ 1
Where whitespace after 'firstName'?
+ 1
I didn't wtite it. š
0
fistName Š±ŠµŠ· "r"