w3resource

Java: Convert all the characters in a string to uppercase

Java String: Exercise-30 with Solution

Write a Java program to convert all characters in a string to uppercase.

Visual Presentation:

Java String Exercises: Convert all the characters in a string to uppercase

Sample Solution:

Java Code:

// Define a public class named Exercise30.
public class Exercise30 {
    
    // Define the main method.
    public static void main(String[] args) {
        // Declare and initialize a string variable.
        String str = "The Quick BroWn FoX!";

        // Convert the above string to all uppercase.
        String upper_str = str.toUpperCase();

        // Display the original and uppercase strings for comparison.
        System.out.println("Original String: " + str);
        System.out.println("String in uppercase: " + upper_str);
    }
}

Sample Output:

Original String: The Quick BroWn FoX!                                                                         
String in uppercase: THE QUICK BROWN FOX!  

Flowchart:

Flowchart: Java String Exercises - Convert all the characters in a string to uppercase

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to convert all the characters in a string to lowercase.
Next: Write a Java program to trim any leading or trailing whitespace from a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/string/java-string-exercise-30.php