填空题
下面程序运行结构是什么?#include "iostream"#define max(a,b) (a>b?a:b)using namespace std;int F(int a[],int s,int e){if(s==e) return a[s]; else if(s+1 == e) return max(a[s],a[e]); return max(a[s],F(a,s+1,e));}int main(){ int a[] = {5,1,4,6,2}; int s = 0,e = 4; cout << F(a,s,e) << endl; getchar(); return 0;}
套餐购买该问题答案仅对会员开放,欢迎开通会员 ¥ 19.9
0.64/天
1个月(不限次)
¥ 19.9
1000次
(不限时)
¥ 29.9
0.32/天
3个月(不限次)
¥ 59.9
0.16/天
1年(不限次)
立即支付