单项选择题

程序运行结果是 class E { int x; static int y; public: E(int a){x=a;y+=x;} void show() {cout< <x> <<’,’<> <<’/n’;} }; int e::y="100;" void main() { e e1(30),e2(50); e2.show(); }> A、50,180
B、30,180
C、30,130
D、50,150

A.show();