se ja tiver algo parecido postado me desculpem!
sem compilar o que acontece!
1º caso
class CasoUm {
static byte a; static short b; static char c;
static int d; static long e; static String s;
public static void main(String[] args) {
System.out.println(s+a+b+c+d+e);
}
}
2º caso
class CasoDois {
static byte a; static short b; static char c;
static int d; static long e; static String s;
public static void main(String[] args) {
System.out.println(a+b+c+d+e+s);
}
}