Example:
user type 4A6
then in this string the 2nd position is capital. How do I say that the position the user typed is capital?
Follow the code to clarify
public class JogoMatematica {
public static void main(String[] args) {
Scanner entrada = new Scanner(System.in);
System.out.println("Quantidade de caso de teste: ");
int qtd = entrada.nextInt();
for (int i = 0; i < qtd; i++){
System.out.println("Digite os 3 caracteres: ");
// exemplo de entrada 4A6. A letra "A" eh maiuscula
String caractere = entrada.next();
// pega o elemento da posicao 0
int valorInt1 = Integer.parseInt(caractere.substring(0,1));
// pega o elemento da posicao 2
int valorInt2 = Integer.parseInt(caractere.substring(2));
// pega o elemento na posicao 1
// se a letra "A" for maiuscula entra no if
if(caractere.substring(1,2).toUpperCase().equals(caractere)){
System.out.println("String maiuscula na posicao ");
}
}