private static void DrawYinYang(Graphics gr,int xctr,int yctr,int rmax,int rint,int ysmall,int rsmall) {
Brush white=Brushes.White;
Brush black=Brushes.Black;
Pen BlackPen=new Pen(Color.Black,2*(rmax-rint));
gr.FillPie(black,xctr-rmax,yctr-rmax,2*rmax,2*rmax,-90,180);
gr.FillEllipse(white,xctr-rint/2,yctr-rint,rint,rint);
gr.FillEllipse(black,xctr-rint/2,yctr,rint,rint);
gr.FillEllipse(white,xctr-rsmall,yctr+ysmall-rsmall,2*rsmall,2*rsmall);
gr.FillEllipse(black,xctr-rsmall,yctr-ysmall-rsmall,2*rsmall,2*rsmall);
double rcircle=(rmax+rint)/2.0;
gr.DrawEllipse(BlackPen,(float)(xctr-rcircle),(float)(yctr-rcircle),(float)(2*rcircle),(float)(2*rcircle));
}
На каждом отрезке от 10*n до 10*n+9 таких чисел ровно 5. Поэтому нам достаточно посчитать число таких полных отрезков, и обработать краевые отрезки. Пусть sumdig(n) - функуция, которая выдаёт остаток от деления суммы цифр n на 2. Тогда: int s0=(B/10-A/10-1)*5; int s1=(10+sumdig(A/10)-A%10)/2; int s2=(2+B%10-sumdig(B/10))/2; return s0+s1+s2;