编写伪代码以打印星号钻石,如下所示。代码应该提示 一个整数值,它将作为图中间的星号数 有一颗钻石的样子。它应该打印图。示例:菱形宽度 - > 5
*
* * *
* * * * *
* * *
*
答案 0 :(得分:0)
*
* * *
* * * * *
* * *
*
获得这样的输出:
for(int i = 0; i <= n/2; i++){
for(int j = 0; j < n/2-i; j++){
cout << " ";
}
for(int j = 0; j < 2*i+1; j++){
cout << "*";
}
for(int j = 0; j < n/2-i; j++){
cout << " ";
}
cout << endl;
}
for(int i = 0; i <= n/2; i++){
for(int j = 0; j <= i; j++){
cout << " ";
}
for(int j = 0; j < n-2*i-2; j++){
cout << "*";
}
for(int j = 0; j <= i; j++){
cout << " ";
}
cout << endl;
}