Domain changed to archive.palanq.win . Feb 14-25 still awaits import.
[29 / 3 / 17]

ID:CL4Y5g9L No.17272925 View ViewReplyOriginalReport
#include <iostream>
using namespace std;
int main() {
int n = 8, i, j, x;
for (i = 0; i < n; i++) {
if (n - i >= 1) {
j = n - (n - (n - 1));
}
for (x = 0; x < j; x++) {
cout << "*";
}
cout << "\n";
}
}

Why doesn't this C++ program output to draw a half triangle in the console? ChatGPT says it should.