FindingNemo1
1234567891011121314
public class Main {
public static void main(String[] args) {
findNemo();
}
public static void findNemo(){
String[] array = {"Nemo"};
int i;
for(i=0; i<array.length; i++){
if (array[i] == "Nemo"){
System.out.println("Found Nemo!");
}
}
}
}
Java
INFO