// Pantea Aria // static 2D arrays: similar to a Matrix // Write a program that declares the following 2D array of integers // { // {1, 0, -1}, // {2, -2, 4}, // {0, 5, 3} // } // and prints all negative elements, one row per line, space-separated.