单选题

下面程序的输出为(    )。

#include <iostream>

#define N 10

using namespace std;

int h[N];

int main() {

      h[0] = h[1] = 1;

      for (int n = 2; n < N; n++)

            for (int j = 0; j < n; j++)

                h[n] += h[j] * h[n - j - 1];

      cout << h[6] << endl;

      return 0;

}

A

132

B

1430

C

16796

D

结果是随机的

赣ICP备20007335号-2