- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution.java
More file actions
Latest commit
33 lines (24 loc) · 844 Bytes
/
Copy pathSolution.java
File metadata and controls
33 lines (24 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
importjava.io.*;
importjava.util.*;
publicclassSolution {
publicstaticvoidmain(String[] args) {
/* Save input */
Scannerscan = newScanner(System.in);
StringA = scan.next();
StringB = scan.next();
scan.close();
/* Sum lengths */
System.out.println(A.length() + B.length());
/* Compare lexicographical ordering */
System.out.println(A.compareTo(B) > 0 ? "Yes" : "No");
/* Print the Strings in desired format */
System.out.println(capFirstLetter(A) + " " + capFirstLetter(B));
}
privatestaticStringcapFirstLetter(Stringstr) {
if (str == null || str.length() == 0) {
return"";
} else {
returnstr.substring(0,1).toUpperCase() + str.substring(1);
}
}
}