Answers for "how to use string variables with an if statement in java"

1

how to use string variables with an if statement in java

String a = "Hello"

if (a.equals("Hello") {
	System.out.println("Variable A is Hello");
} else {
	System.out.println("Variable A is not hello :(");
}
Posted by: Guest on August-13-2020
0

how to use string variables with an if statement in java

String a = "Hello"

if (a.equals("Hello") {
	System.out.println("Variable A is Hello");
} else {
	System.out.println("Variable A is not hello :(");
}
Posted by: Guest on August-24-2021

Code answers related to "how to use string variables with an if statement in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language