[Solved] C++ Create Triangles with For Loops [closed]
You need to output spaces between the triangles: #include <iostream> using namespace std; int main() { const int size = 6; int uzunluk = size; for (int i = 0; i < size; i++) { for (int j = 0; j < uzunluk; j++) { cout << “*”; } for (int j = 0; j … Read more