Skip to content

Instantly share code, notes, and snippets.

@kostik3513
kostik3513 / Завдання 1
Last active September 30, 2025 09:59 — forked from GKovtonyuk/Завдання 1
Практичне завдання: Двовимірні масиви в C++
#include <iostream>
using namespace std;
int main() {
const int n = 3;
int a[n][n];
int s = 0;
// Введення елементів матриці
for (int i = 0; i < n; i++) {