Checking Code Snippet
Java Code
package JavaByMe;
public class Variables {
public static void main(String[] args) {
// Variables
byte a=100;
int b=383833;
float c= 99.9f;
long d= 474847383;
double e=7484.48484;
char f='G';
boolean g=true;
System.out.println(a+"\n"+b+c+d+e+f+g);
}
}
package JavaByMe;
public class Variables {
public static void main(String[] args) {
// Variables
byte a=100;
int b=383833;
float c= 99.9f;
long d= 474847383;
double e=7484.48484;
char f='G';
boolean g=true;
System.out.println(a+"\n"+b+c+d+e+f+g);
}
}
Footer
https://ideone.com/fvOmUG
Comments
Post a Comment