蘑菇街2019届校招-测试类笔试题
时长:120分钟 总分:100分
127浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 填空题 | 简答题 |
---|---|---|---|---|
数量 | 20 | 10 | 1 | 1 |
方格走法
输入描述: 输入包括一行,空格隔开的两个正整数x和y,取值范围[1,10]。输入样例: 3 2 输出描述: 输出一行,表示走法的数目输出样例 10
阅读以下代码:      ...
阅读以下代码:
import java.io.*
import java.util.*
public class foo {
public static void main(String[] args) {
String s
System.out.println(“s=”+s)
}
}
输出结果为:()有如下代码:请写出程序的输出结果(  ) public clas...
有如下代码:请写出程序的输出结果( )
public class Test{
public static Test t1=new Test()
{
System.out.println("blockA")
}
static{
System.out.println("blockB")
}
public static void main(String[] args)
{
Test t2=new Test()
}
}