Skip to content

Instantly share code, notes, and snippets.

@m1irka
Created October 23, 2024 10:08
Show Gist options
  • Select an option

  • Save m1irka/ceb0954a55b53398881835593590ce51 to your computer and use it in GitHub Desktop.

Select an option

Save m1irka/ceb0954a55b53398881835593590ce51 to your computer and use it in GitHub Desktop.
matrica.ccp
#include <iostream>
using namespace std;
int main() {
/*
1 1 1
1 1 1
1 1 1
*/
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
cout << 1 << " ";
}
cout << endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment