使用两个下标的数组被称为数组,假定有如下语句:
float scores[ ][ ] = { {1,2,3},{4,5},{6,7,8,9} };
则scores.length的值为:, scores[1].length的值为:,
scores[1][1]的值为:。
public class ish{
public static void main(String[] args)
{String s="call me ishmae";
System.out.println(s.charAt(s.length()-1));
}
}
则输出结果为:( )
A. a B. e C. c D. "
下面哪个单词是Java语言的关键字( )
A.Float B.this C.string D.unsigned