题目内容

电压偏低对电力用户的影响有( )。

A. 灯泡发的光效率降低
B. 电动机转速降低
C. 电动机效率提高
D. 电动机绕组过热

查看答案
更多问题

阅读程序,写结果#include using namespace std;int i=10;int f1(int j) {static int i=20;j=i--;return j;}int f2(int i) {int j=15;return i=j+=i;}int main() {for (int j=1;j<3;j++)cout<

写出下面的程序的运行结果#include using namespace std;#define N 5void func(){static int a;int b=2;cout<<(a+=3,a+b)<<” ”;}int main(){for(int i=1;i

写程序运行结果#include using namespace std;class goods {private: static int totalweight;int weight;public: goods(int w) { weight=w; totalweight+=weight; }goods(goods &gd) { weight=gd.weight; totalweight+=weight; }~goods() { totalweight-=weight; }static int gettotal() { return totalweight; }};int goods::totalweight=0;int main() {goods g1(50);cout<

写程序运行结果#include using namespace std;class A{int i,j;static int c;public:A(int a=0,int b=0) { i=a; j=b; c++; }~A() { c--; }static void f() { cout<

答案查题题库