单项选择题

有如下程序:
#include<iostream>
using namespace std;
Class Con
char ID;
public:
Con():ID(’A’)cout<<1;
Con(char ID) :ID(ID) cout<<2;
Con(Con& c):ID(c.getID())cout<<3;
char get1D()constreturn ID;
;
void show(Con c)cout<<c.get1D();
int main()
Con c1;
show(c1);
Con c2(’B’);
show(c2);
return 0;
执行上面程序的输出是( )。

A.13A23A
B.23A13B
C.13A23B
D.13B23A