To Lower Case

less than 1 minute read

This program was created to convert every letter of a word to lowercase.

The code has been modified slightly and now uploaded to the site.

<— Return Home

Solution.java

public class Solution {
    public static void main(String[] args) {
        System.out.println(toLowerCase("Hello"));
        System.out.println(toLowerCase("here"));
        System.out.println(toLowerCase("LOVELY"));
    }
    public static String toLowerCase(String s) {
        return s.toLowerCase();
    }
}

<— Return Home