外部设备是指连在计算机以外的设备,它一般分为输入设备和输出设备。()
A、正确
B、错误
参考答案:A
根据句意及所给首字母提示,写出正确单词。
1. We should stop using p______ things. That can save a lot of trees every year.
2. I feel that he is s ___ for this job.
3. She likes to dress herself in an u ___ way.
4. The bridge is broken. Now it is being p ___ down by machines.
5. Charity tries to r ____money in different ways.
为计算an的值,某人编写了函数power如下: Private Function power(a As Integer,n As Integer)As Long Dim P As Long P=a For k=1 To nP=P*a Next k power=P End Function 在调试时发现是错误的,例如Print power(5,4)的输出应该是625,但实际输出是3125。程序需要修改。下面的修改方案中有3个是正确的,错误的一个是( )
A.把For k=1 To n改为For k=2 To nB.把p=p*a改为p=p^nC.把For k=1 T0 n改为For k=1 To n-1D.把p=a改为p=1