请问佬是怎么写的啊?我这个是哪地方出错了吗?改了2个小时(;´༎ຶД༎ຶ`) #include <stdio.h>int p=0;void OutNum(int b[],int a); //算0的个数int ConNum(int x); //算出式子的结果int main(){ int T,N,L,Z; int i=1; int b[100]={0}; scanf("%d",&T); Z=T; while (T>0) { scanf("%d",&N); L=ConNum(N); OutNum(b,L); T--; } f...