正弦交流电的有效值()。
A、在正半周不变化,负半周变化
B、在正半周变化,负半周不变化
C、不随交流电的变化而变化
D、不能确定
参考答案:C
--- You hate Lee, don't you?
---______I just think he is a bit annoying.
A.That's right
B.Not exactly
C.By all means
D.Never mind
以下程序运行后的输出结果是 _______ 。fun(int a){int b=0; static int c=3; b++;c++; return(a+b+c); }main(){int i,a=5;for(i=0;i<3;i++) printf("%d%d",i,fun(a));printf("\n"); }