Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class DataType {
- public static void main(String[]args) {
- String MyString = "Assalamualaikum";
- char MyChar = 'A';
- int MyInt = 31;
- float MyFloat = 7;
- short MyShort = 2000;
- boolean MyBool = true;
- System.out.println(MyString);
- System.out.println(MyChar);
- System.out.println(MyInt);
- System.out.println(MyFloat);
- System.out.println(MyShort);
- System.out.println(MyBool);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment