下列写法中哪些是不对的?
A. byteb=30;
B. byteb=500;
C. longd=2343223;
D. floatf=3.14;
以下哪条语句是编译失败的呢?为什么呢?byteb1=3,b2=4,b;b=b1+b2;b=3+4;
byteb=130;有没有问题?如果我想让赋值正确,可以怎么做?结果是多少呢?
请写出下列程序结果:System.out.println('a');System.out.println('a'+1);System.out.println("hello"+'a'+1);System.out.println('a'+1+"hello");System.out.println("5+5="+5+5);System.out.println(5+5+"=5+5");