MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / CaseConvet

Class CaseConvet

Java/String/CaseConvert.java:3–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import java.util.Scanner;
2
3public class CaseConvet {
4
5
6
7
8
9 public static void main(String[] args) {
10 Scanner sc =new Scanner(System.in);
11
12 String Str =sc.nextLine();
13 System.out.println(Str.toUpperCase());
14 }
15}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected