Menu Close

Lowercase to Uppercase in Java …FTC

Write a program that asks the user’s name, and then greets the user by name. Before outputting the user’s name, convert it to upper case letters. For example, if the user’s name is Fred, then the program should respond “Hello, FRED, nice to meet you!”.

Input:
Enter any Name:  World

Output:
Hello,WORLD,nice to meet you
import java.io.*;
import java.util.*;
public class temp {
	 public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
        String name,Upname;
        System.out.println("Enter any name:  ");
        name = scan.nextLine();
        Upname = name.toUpperCase();
       System.out.println("Hello,"+Upname+",nice to meet you!");
	}
}

INPUT_1:
Enter any name:
fed

OUTPUT:
Hello,FED,nice to meet you!


INPUT_2:
Enter any name:
fcukthecode

OUTPUT:
Hello,FCUKTHECODE,nice to meet you!


INPUT_3:
Enter any name:
metaverse

OUTPUT:
Hello,METAVERSE,nice to meet you!


INPUT_4:
Enter any name:
playerone

OUTPUT:
Hello,PLAYERONE,nice to meet you!


INPUT_5:
Enter any name:
ass

OUTPUT:
Hello,ASS,nice to meet you!


INPUT_6:
Enter any name:
linuxrockz

OUTPUT:
Hello,LINUXROCKZ,nice to meet you!


ILLUSTRATION

Executed using javac in linux terminal

Leave a Reply

Your email address will not be published. Required fields are marked *