15 lines
344 B
Java
15 lines
344 B
Java
package gaga_gmail_com;
|
|
|
|
public class Password {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
String password = "correcthorsebatterystaple";
|
|
|
|
// Write the code:
|
|
System.out.print(password.compareTo("correcthorsebatterystaple"));
|
|
System.out.print(password.equals("correcthorsebatterystaple"));
|
|
|
|
}
|
|
|
|
} |