Menu Close

Convert lowercase letters to uppercase letters

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

Morae Q!

  1. Convert from binary number to decimal number.
  2. Swap two numbers by using division and multiplication.
  3. Compute foot and inches into centimetres.
  4. Concatenate Strings.
  5. Convert lowercase letters to uppercase letters.
  6. Compute the sum of all the digits of N.
  7. Compute the area of the pentagon.
  8.  Get input using scanner.
  9. Find the distance between two points (x1,y1) and (x2,y2).
  10. Finding patterns in a file using frep and egrep .
  11. Detecting a cycle in a directed graph using Depth First Traversal.
  12. Topological ordering in a Graph.
  13. Storing graphs using adjacency list.
  14. Introduction to graph theory.
  15. Graph Adjacency Matrix pseudo code.
  16. Adjacency Matrix for storing graphs.
  17. Dijkstra’s shortest path algorithm .
  18. Breadth first search (BFS) Algorithm.
  19. Find the multiple of given number in the list of integers.
  20. Finding patterns in files using grep .