一游客在乘缆车匀速上山的过程中,他的动能 _________ ,重力势能 _________ ,机械能 _________ .(填“增大”、“减小”或“不变”)
不变;增大;增大
压力()可以促进有机质向石油转化。
A、升高
B、降低
C、变化
D、稳定
有如下程序: #include<iostream> using namespace std; class Amount{ int amount; public: Amount(int n=0):amount(n){ } int getAmount( )const{return amount;} Amount&operator+=(Amount A) { amount+=a.amount; return; } }; int main( ){ Amount x(3),y(7); x+=y: cout<<x.getAmount( )<<endl; return 0; } 已知程序的运行结果是10,则下画线处缺失的表达式是
A.*this
B.this
C.&amount
D.amount