-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA_Word.java
More file actions
38 lines (33 loc) · 723 Bytes
/
Copy pathA_Word.java
File metadata and controls
38 lines (33 loc) · 723 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
31
32
33
34
35
36
37
38
/**
* A_Word
*/
import java.util.Scanner;
public class A_Word {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
int upper = 0;
int lower = 0;
for(int i= 0; i<s.length();i++)
{
char c = s.charAt(i);
if(Character.isUpperCase(c))
{
upper++;
}
else
{
lower++;
}
}
if(upper > lower)
{
System.out.println(s.toUpperCase());
}
else if(upper <= lower )
{
System.out.println(s.toLowerCase());
}
sc.close();
}
}