Computer Science, asked by ankitbharta, 1 year ago

write a java program to print the uppercase characters in an statement

Answers

Answered by sikhi
3
String a="anything";
String upper=a.toUpperCase();
System.out.println(upper);

sikhi: i hope it will help you
Similar questions