8.1.. Napisati program da ispisuje 3 puta u 3 reda IME sa razmakom.

Listing programa :

// 08514001
#include <iostream>

using namespace std;
int main()
{
    int i, j;

    for (i = 1; i <= 3; i++)            // redovi
    {
        for (j = 1; j <= 3; j++)        // kolone
            cout << "IME ";             // ispis IME
        cout << "\n";                   // ili cout << endl;	
    }
    return 0;
}

Ispis na ekranu:

Index