-
Notifications
You must be signed in to change notification settings - Fork 0
/
Wally.java
37 lines (29 loc) · 853 Bytes
/
Wally.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
29
30
31
32
33
34
35
36
37
/**
* Laboratório de Programação 2 - Lab 1
*
* @author Mariane Silva de Carvalho - 119210450
*/
import java.util.Scanner;
public class Wally{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (true) {
String NomeIni = sc.nextLine();
if (NomeIni.equals("wally")) {
break;
}
String[] nomes = NomeIni.split(" ");
String novoNome = "";
for (String nome : nomes) {
if (nome.length() == 5) {
novoNome = nome;
}
}
if (novoNome != "") {
System.out.println(novoNome);
} else {
System.out.println("?");
}
}
}
}