我正在为我正在学习的 C++ 课程设计一个程序,教授希望我们制作一个使用“*”输出菱形的程序。我坚持的事情是我的程序输出了太多行。
代替
*
***
*
它正在输出
*
***
*****
***
*
我将如何修改我的代码以使其正常工作?我整个早上都在网上寻找答案,但没有运气。
这是我的代码:
#include <iostream>
using namespace std;
int main () {
//Define Varaible
int N;
cout << "Please enter a postitive integer: ";
cin >> N;
cout << "Here is your diamond." << endl << endl;
for (int i = 0; i <= 2 * N; i++) {
for (int j = 0; j <= 2 * N; j++) {
if (i <= N) {
if (j < N - i || j > N + i) {
cout << ' ';
}
else {
cout << '*';
}
}
else {
if (j < i - N || j > 3 * N - i) {
cout << ' ';
}
else {
cout << '*';
}
}
}
cout << endl;
}
return 0;
}