Whye error??? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

Whye error???

public class Program { public static void main(String[] args) { String x = "moutaz "; String y = "java"; String result = x.toUpperCase(); System.out.println(result); System.out.println(y.toUpperCase); } }

3rd May 2022, 9:59 PM
Mohammed Moutaz
1 Resposta
+ 3
toUpperCase() is a method. Hence you need the () in the last println
4th May 2022, 11:29 AM
Lisa
Lisa - avatar