#include #include typedef int table15[15][15]; void findmin(table15 t,int& row, int& col, int& value, int h, int w); int main() {int sets; cin>>sets; while(sets>0) {int TOTAL=0; int x, y, min; int height, width; table15 t; cin>>height; width=height; // LOAD TABLE for (x=0;x>t[x][y];} //Loop til min is above threshold min=100; while(min<1000) { min=10000; //set min to huge number // cout<=t[x][y]) // if this is the new min {row=x; //set row col=y; //set column value=t[x][y]; //set value } return; }