I am trying to make both of these if statements output if true.
Like if I am enter:
cat
car
I want it to output:
Cat and Car are both the same length.
Cat and Car both start with C.
Right now I am only getting the First output
Here is the code:
import java.util.Scanner; // Import the Scanner class
public class Main
{
public static void main(String[] args) {
System.out.println("input words");
String myObj, myObj1;
Scanner sc = new Scanner(System.in); // Create a Scanner object
myObj = sc.nextLine(); // String Input
myObj1 = sc.nextLine(); // String Input
if(myObj.length() == myObj1.length()){ // System check for String Length
System.out.println( myObj + " and " + myObj1 + " are the
same length.");
}
if ((myObj1.charAt(0) == 'C') && (myObj.charAt(0) == 'C')){
System.out.println(myObj + " and " + myObj1 + " start with C." );
} // Output if both start with C
myObj = sc.nextLine(); // String Input myObj1 = sc.nextLine(); // String Inputplease print out the valuesinput words Car Cat Car and Cat are the same length. Car and Cat start with C.cdoes not equalCcat, notCat, then the second output will not show. Nicely spotted, Mr. Wombat.