[Solved] filling a matrix with equations results in c++
You need to print the x and y variables at first and then increase them. #include <iostream> int main(int argc, char** argv) { int t[2][25]; int x = 0; int y = 0; for (int l = 5; l > 0; l–) { for (int col = 5; col >=1; col–) { t[0][x] = 500 … Read more