Java Strings

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Java Strings

public class Main {

public static void main(String[] args) {

String greeting = "Hello";

System.out.println(greeting);

String Length
public class Main {

public static void main(String[] args) {

String txt = "ABC";

System.out.println("The length of the txt string is: " + txt.length());

String Concatenation
public class Main {

public static void main(String args[]) {

String firstName = "John";

String lastName = "Doe";

System.out.println(firstName + " " + lastName);

Java Booleans
public class Main {

public static void main(String[] args) {

boolean isJavaFun = true;

boolean isFishTasty = false;


System.out.println(isJavaFun);

System.out.println(isFishTasty);

Java Conditions and If Statements


public class Main {

public static void main(String[] args) {

if (20 > 18) {

System.out.println("20 is greater than 18"); // obviously

The else Statement


if (condition) {

// block of code to be executed if the condition is true

} else {

// block of code to be executed if the condition is false

public class Main {

public static void main(String[] args) {

int time = 20;

if (time < 18) {

System.out.println("Good day.");

} else {

System.out.println("Good evening.");

}
}

The else if Statement


if (condition1) {

// block of code to be executed if condition1 is true

} else if (condition2) {

// block of code to be executed if the condition1 is false and


condition2 is true

} else {

// block of code to be executed if the condition1 is false and


condition2 is false

public class Main {


public static void main(String[] args) {
int time = 22;
if (time < 10) {
System.out.println("Good morning.");
} else if (time < 20) {
System.out.println("Good day.");
} else {
System.out.println("Good evening.");
}
}
}

You might also like