Skip to content

Commit 56b13e4

Browse files
authored
Create Caseconvert.java
1 parent 2baeb7e commit 56b13e4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Java/String/Caseconvert.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import java.util.Scanner;
2+
3+
public 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+
}

0 commit comments

Comments
 (0)