import java.util.*;
import java.lang.*;
import java.io.*;
// The main method must be in a class named "Main".
class Main {
public static void main(String[] args) {
// DATA TYPES
//integrals data types
int age = 33;
byte age2 = 57;
short age3 = 77;
long age4 = 3763476364l;
// character datatypes
char age5= 'a';
// '' it is compulsory
// float (decimal datatypes)
float age7 = 4.4f;
// floqat me f lgana jruri h
double age8 = 5.5d;;
// d laga bhi skte or nhi bhi
// boolean datatypes
boolean age9 = true;
// true or false rhta bss
System.out.print(age);
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: