converting upper case letters to lower case letters
public class convertuppeercasetolowercase {
public static void main(String[] args) {
for (char ch = 'A'; ch <= 'Z'; ch++) {
System.out.println((char) (ch | ' '));
}
}
}
Comments
Post a Comment