编辑代码

#include <stdio.h>
void main () 
{int x=92,y=71,z=89,k;
   { k=(x+y+z)/3;
    printf("math=x%d,phy=y%d,comp=z%d,average=k%d\n"x,y,z,k);
   }
}