-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringmax.java
More file actions
41 lines (39 loc) · 1.11 KB
/
Copy pathstringmax.java
File metadata and controls
41 lines (39 loc) · 1.11 KB
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
31
32
33
34
35
36
37
38
39
40
41
<<<<<<< HEAD
import java.util.Scanner;
public class stringmax {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] arr = new String[sc.nextInt()];
for(int i = 0; i<arr.length; i++) {
arr[i] = sc.next();
}
String maxString = arr[0];
for(int i = 0; i<arr.length; i++) {
if(arr[i].compareTo(maxString) > 0) {
maxString = arr[i];
}
}
System.out.println(maxString);
sc.close();
}
}
=======
import java.util.Scanner;
public class stringmax {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] arr = new String[sc.nextInt()];
for(int i = 0; i<arr.length; i++) {
arr[i] = sc.next();
}
String maxString = arr[0];
for(int i = 0; i<arr.length; i++) {
if(arr[i].compareTo(maxString) > 0) {
maxString = arr[i];
}
}
System.out.println(maxString);
sc.close();
}
}
>>>>>>> 4ecfcb4dd95708059f7b96dba0304ec457a84060