-24中,底数是______,指数是______.
在-24中,底数是2,指数是4.
将熟鸡蛋的蛋白切成碎块放人烧杯中.在适宜条件下,下列哪组消化液对其消化效率最高( )
A.胆汁、肠液
B.唾液、胃液
C.肠液、胰液
D.肠液、胃液
请填写空格: #include<iostream> using namespace std; void fun(int x,int y,int * z) { *2 = x + y;} void main() {int a=100,b=100,c,*p=&c;fun(a,b,p);【10】 ;//输出调用fun函数后返回a、b的和。 }