Programming Reference/Librarys
Question & Answer
Q&A is closed
String a = "42"; String b = "144"; if ( a.equals(b) ) { System.out.println(b+" is the answer"); } else { System.out.println(b+" is probably not the answer"); }
144 is probably not the answer