下列程序实现了输出杨辉三角形,代码中横线部分应该填入的是( )。
1 #include <iostream> 2 using namespace std; 3 #define N 35 4 int a[N]; 5 int main() { 6 int n; 7 cin >> n; 8 for (int i = 0; i < n; i++) { 9 a[i] = 1; 10 for (int j = i - 1; j > 0; j--) 11 ________; // 在此处填入选项 12 for (int j = 0; j <= i; j++) 13 cout << a[j] << " "; 14 cout << endl; 15 } 16 return 0; 17 }