单位应当根据本单位实际情况确定内部监督检查的()。
A.频率
B.程序
C.范围
D.方法
参考答案:A, C, D
下列程序中,要求从键盘接受字符输入,直到输入字符为“e”(注意是小写)时停止,并且将输入的字符(“e”之前的字符)显示在屏幕上。请将程序补充完整。 程序运行结果如下: Keep typing,it will stop while enter ’e’... ddfsofkjlvncozieowdsfadsf ddfsofkjlvncozi import java.io.*; public class ex4_1 { public static void main(String[] args) {char ch;System.out.println("Keep typing,it will stop while enter ’e’...");try{ while((ch= _______)!=’e’){ System._______; }}catch(IOException Joe){ System._______;} } }
为什么要强调正规循环作业?