一块长方体橡皮被刀切了3次,最多能被分成( )块。
8
Santa brought ____ toys. [ ]
A. I
B. me
C. my
以下程序的执行结果是______。 #include<iostream.h> class Sample { int n; public: Sample(){} Sample(int m){n+m;) int&operator--(int) { n-- return n; } void disp () {cout<<"n= "<<n<<end1;} } void main () { Sample s (10); (s--) ++; s.disp(); }