To Lower Case
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.
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();
}
}