View Code of Problem 25

import java.util.Scanner;

public class Main {


    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        Integer get = Integer.valueOf(scanner.nextLine());
        for (int i = 0; i < get; i++) {
            String s = scanner.nextLine().toLowerCase();

            System.out.println(s);
        }
    }


}

Double click to view unformatted code.


Back to problem 25