下面程序的输出结果是:
int a[] = { 2,5,1,4,3,3,2};
multiset st(a,a+7);
cout << * st.lower_bound(3) << "," << *st.upper_bound(3) << endl;
A、3,4
B、2,3
C、3,3
D、2,2
int a[] = { 2,5,1,4,3,3,2};
multiset st(a,a+7);
cout << * st.lower_bound(3) << "," << *st.upper_bound(3) << endl;
A、3,4
B、2,3
C、3,3
D、2,2