-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP300.java
28 lines (27 loc) · 887 Bytes
/
P300.java
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
package aceptaelreto;
import java.util.*;
public class P300 {
static Scanner reader;
public static void main(String[] args){
reader = new Scanner(System.in);
int numCasos,i;
numCasos = reader.nextInt();
for( i=0 ; i < numCasos; i++){
casDeProva();
}
}
static void casDeProva(){
String palabra;
palabra = reader.next();
int resultadoA = palabra.indexOf("a");
int resultadoE = palabra.indexOf("e");
int resultadoI = palabra.indexOf("i");
int resultadoO = palabra.indexOf("o");
int resultadoU = palabra.indexOf("u");
if(resultadoA != -1 && resultadoE != -1 && resultadoI != -1 && resultadoO != -1 && resultadoU != -1){
System.out.println("SI");
}else{
System.out.println("NO");
}
}
}