java print statement
System.out.println("print your String");
java print statement
System.out.println("print your String");
if else in java
import java.io.*;
public class JavaIfElse
{
public static void main(String[] args)
{
int number = 15;
// check if number is divisible by 2
if(number%2 == 0)
{
System.out.println(number + " is even number");
}
else
{
System.out.println(number + " is odd number");
}
}
}
else statement java
int x = 3;
if (x == 3) {
// block of code to be executed if the condition is true
} else {
// block of code to be executed if the condition is false
}
how to make if else statments in java
if (condition) {
// code block
} else {
// code block
}
if else java
public class TestIfElse {
public static void main(String[] args) {
int a = 5, b = 6;
if (a > b) {
System.out.println("a is greater");
} else {
System.out.println("b is greater");
}
}
}
java print statement
System.out.println("print your String");
if else in java
import java.io.*;
public class JavaIfElse
{
public static void main(String[] args)
{
int number = 15;
// check if number is divisible by 2
if(number%2 == 0)
{
System.out.println(number + " is even number");
}
else
{
System.out.println(number + " is odd number");
}
}
}
else statement java
int x = 3;
if (x == 3) {
// block of code to be executed if the condition is true
} else {
// block of code to be executed if the condition is false
}
how to make if else statments in java
if (condition) {
// code block
} else {
// code block
}
if else java
public class TestIfElse {
public static void main(String[] args) {
int a = 5, b = 6;
if (a > b) {
System.out.println("a is greater");
} else {
System.out.println("b is greater");
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us