Video 4(ch1)

Yash
0

 



Program:-

https://drive.google.com/file/d/1_-BT_uc7dUJ3vVfQivEVmUKsVTDZFCC5/view?usp=drivesdk




public class Main {

public static void main(String[] args) {

byte age =34;

int age2 =56;

short age3 =87;

long ageDino =56666666777L;

char ch ='A';

float f1 =5.6f;//or F

double d1 =4.66D;//or d or don not write anything just put 4.66

boolean a =true;

String str ="yash";

System.out.println(age);

System.out.println(age2);

System.out.println(age3);

System.out.println(ageDino);

System.out.println(ch);

System.out.println(f1);

System.out.println(d1);

System.out.println(a);

System.out.println(str);

}

}


Video link :-https://youtu.be/b2VJmyarV3I?si=BouCLtp8LNiexqir

Tags

Post a Comment

0 Comments
Post a Comment (0)
To Top