其他分享
首页 > 其他分享> > 预科第一周考核题20220702

预科第一周考核题20220702

作者:互联网

 

1 定义变量的语法格式

2 定义一个布尔boolean变量表示false

3 交换两个变量的结果

4 a++ 和++a的区别

5 算术运算符 % 的意思

6 逻辑运算符 && 和 || 的含义

7 阐述流程a if (condition) {}

8 阐述流程b if (condition) {}else {}

9 阐述流程c if (condition) {}else if(condition) {}else {}

10 阐述流程d switch (key) {
case value:

break;

default:
break;
}

11 使用while循环输出100次helloworld

12 使用do-while循环输出100次helloworld

13 使用for循环输出1--100的偶数和

14 定义一个方法求两个整数的和

15 定义一个方法以字符串形式返回你的个人信息(姓名,年龄,性别)。

16 定义数组的三种语法格式

17 创建一个长度为5的整型数组

18 求数组最大值的思路

19 用三种方式遍历(迭代)数组arr int [] arr = {44,55,66,77,88};

20 写出冒泡排序代码 对数组arr 进行升序排列

21 使用二分查找 对升序后的数组arr进行查询。(返回索引,或-插入点-1)

22 翻译: ArrayIndexOutOfBoundsException

23 翻译: NullPointerException

24 翻译单词:length;index;array;equals;false;true;other; already;next;print;delete;insert;

25 翻译 age cannot be resolved to a variable

26 翻译 Duplicate local variable a

27 翻译 Syntax error

28 翻译 Dead code

29 翻译 Unreachable code

30 写出你新入学这一周的感受(须客观)

标签:翻译,定义,第一周,20220702,arr,数组,100,condition,预科
来源: https://www.cnblogs.com/haizinihao/p/16436433.html