若定义有short s; byte b; char c; 则表达式 s * b + c 的类型为
举一反三
- 若定义有shorts;byteb;charc;则表达式s*b+c的类型为___。
- 为了计算s=15!(15的阶乘),则s变量应定义为()。 A: 4 B: char C: short D: int E: long
- 对于“switch(a)”表达式中的变量a,它可以被声明为哪些合法数据类型? A: boolean, byte, char, short, int, long B: boolean, byte, char, short, int C: byte, char, short, int D: boolean, byte, char, short, int, long, float, double
- short s = 0x1234; byte b = (byte) s;现在,b=?(10进制)
- 若已定义char s[10];,则下面表达式中能表示s[1]的地址的是( )。 A: &s[3]-2 B: &s[1] C: s+1 D: &s[0]+1