if(string1 == string2){
System.out.println(same);
}else{
System.out.println(different);
}
if(string1 == string3){
System.out.println(same);
}else{
System.out.println(different);
}
if(string2 == string3){
System.out.println(same);
}else{
System.out.println(different);
}
Solution
New
Comments
- Popular
- New
- Old
You must be signed in to leave a comment
This page doesn't have any comments yet