【单选题】某人编写了如下程序: Private Sub Command1_Click() Dim a As Integer, b As Integer a = InputBox("请输入整数") b = InputBox("请输入整数") pro a pro b Call pro(a + b) End Sub Private Sub pro(n As Integer) While (n > 0) Print...
A.
把过程pro的形式参数 n As Integer 改为 ByVal n As Integer
B.
把Call pro(a + b) 改为 Call pro a + b
C.
把 n = n \ 10 改为 n = n / 10
D.
在pro b 语句之后增加语句 c% = a + b ,再把 Call pro(a + b) 改为 pro c
【多选题】What is true of a module containing a file named module-info.java with the following contents? (Choose all that apply.)module com.food.supplier {}
A.
All packages inside the module are automatically exported.
B.
No packages inside the module are automatically exported.
C.
A main method inside the module can be run.
D.
A main method inside the module cannot be run since the class is not exposed.