74.9k views
2 votes
3) Create a Java program that declares variables of the

following types: int, double, boolean, char, and String.
Initialize those variables to some values of your choice,
and output the values stored in those variables using
println statements.

User Lynson
by
7.9k points

1 Answer

4 votes

Answer:

public class Main

{

public static void main(String[] args) {

int number = 2;

double dotNumber = 2.5;

boolean hamlet = true;

char character = 'A';

String words = "itz72 is a lazy bum";

System.out.println(number);

System.out.println(dotNumber);

System.out.println(hamlet);

System.out.println(character);

System.out.println(words);

}

}

Step-by-step explanation:

User Selvagsz
by
7.6k points