有下列程序: #include<iostream> Using namespace std; Class Amount int amount; public; Amount(int n=O):amount(n) Int getAmount()constreturn amount; Amount &operator+=(Amount
A. amount+=a.amount; return
; int main() Amount x(3),y(7); x+=y; cout<<x.getAmount()<<endl; return 0;