Untitled

Anonymous
plain_text
08/07/2024 9:39 AM
368 B
20
Indexable
#include <iostream>
using namespace std;
int main()
{
        int n = 5;  

        for (int i = 1; i <= n; ++i) {
            for (int j = 1; j <= i; j++) {
                cout << "O";
            }
            cout << endl;
        }

        return 0;
 }

Editor is loading...
Leave a Comment