我已经阅读了一些关于使用大括号的先前问题,据我了解,如果只有一行,则可以不使用大括号,但如果要使用多行代码,则需要使用括号。
我有一个作业,教练确实要求我们在每种情况下都使用括号来养成良好的习惯。他还允许我们研究和使用示例代码。
现在,我的问题是,我发现了一些不使用括号的示例代码。当我尝试将括号添加到代码中时,它会使我的输出不正确。 有人可以向我解释如何在多行代码中正确使用大括号,并就如何实现我正在寻找的结果提出建议。
这是输出正确时的代码:
void printStars(int i, int n)
// The calling program invokes this function as follows: printStars(1, n);
// n >= 1
{
if(i == n)
{
for(int j = 1; j <= n; j++) cout << '*'; cout << endl;
for(int j = 1; j <= n; j++) cout << '*'; cout << endl;
}
else
{
for(int j = 1; j <= i; j++) cout << '*'; cout << endl;
printStars(i+1, n); // recursive invocation
for(int j = 1; j <= i; j++) cout << '*'; cout << endl;
}
} // printStars
int main() {
int n;
int i=0;
cout << "Enter the number of lines in the grid: ";
cin>> n;
cout << endl;
printStars(i,n);
return 0;
}
当我尝试“清理”时,看起来像这样:
void printStars(int i, int n)
// The calling program invokes this function as follows: printStars(1, n);
{
if(i == n)
{
for(int j = 1; j <= n; j++)
{
cout << '*';
cout << endl;
}
for(int j = 1; j <= n; j++)
{
cout << '*';
cout << endl;
}
}
else
{
for(int j = 1; j <= i; j++)
{
cout << '*';
cout << endl;
}
printStars(i+1, n); // recursive invocation
for(int j = 1; j <= i; j++)
{
cout << '*';
cout << endl;
}
}
} // printStars
int main() {
int n;
int i=0;
cout << "Enter the number of lines in the grid: ";
cin>> n;
cout << endl;
printStars(i,n);
return 0;
}