Answers for "compare to array in java and print the string that is not in the array"

1

compare numbers in array in java

for (int i = 0; i < a.length; i++) 
{
    for (int k = i+1; k < a.length; k++) 
    {
        if (a[i] != a[k]) 
         {
            System.out.println(a[i]+"not the same with"+a[k]+"n");
        }
    }
}
Posted by: Guest on February-20-2021

Code answers related to "compare to array in java and print the string that is not in the array"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language