#include #include int main(){ int M,N,K; scanf("%d%d%d",&M,&N,&K); int a[M+1][N+1];//M是行数,为了让下标和行数对应,多要了一行 int i,j; //int k,w; int count=0; int temp_v,temp_k,temp_w; int SumStep=0,SumValue=0; struct node{ int k;//用来保存不为0的行数 ...