1public class Guru99 {
2 public static void main(String args[]) {
3 String S1 = new String("minúsculas convertidas en mayúsculas");
4
5 // Convertir a UpperCase
6 System.out.println(S1.toUpperCase());
7 }
8}
9