#includeint main(){ int A[]={3,5,2,5,5,5,0}; int i=1,temp=A[0],n=1; //temp用于存放当前找到的最大的数,n用于记录出现的次数 while(i if(temp temp=A[i]; n=0; n++; } else if(temp==A[i])n++; i++; } printf("最大的数:%d 出现次数:%d\n",temp,n); return 0;}
000