for (int i=0;i<7;i++)                  //生成7个数,到C36_7数组中
{
 c = (int)(Math.random() * 36+1);
 if (c==0)
  {
 c = (int)(Math.random() * 36+1);
  } 
                     C36_7[i]=c;
                    /*
                    for(int j=0; j<i; j++)
                     if(C36_7[j]==c)
                       i--;
                    */

}