Привет, не пойму каким методом различать элементы массива:
public static void main(String[] args) {
List myList = new ArrayList();
Scanner sc = new Scanner(System.in);
int countCapitals = 0;
int countCharacters = 0;
char[] alphabet = "abcdefghijklmnopqrstuvwxyz".toCharArray();
char[] majus = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".toCharArray();
for (int i=0; i<3; i++) {
System.out.println("object "+(i+1)+":");
String num = sc.next();
myList.add(num);
}
System.out.println(myList.contains("t")); // to check if list contains "t"
for (int x=0; x<myList.size(); x++) {
System.out.println(myList.get(x));
// если правильно понимаю тут должен быть if но как его сделать?
}
System.out.println("countCharacters = " + countCharacters);
System.out.println("countCapitals = " + countCapitals);
}
Спасибо