CompuServe Messages

STUDENT RESPONSE ANI3-C

    28-Mar-95 09:58:12
Fm: Jack S. Winberg 71513,1522
To: NAAUG 73204,3522
Jerry, Thanks for your last note – I added the missing quote and it flew like a bird. NOW, however, I'm stuck on the next exercise (#4), in spite of proof reading the code carefully. Even my wife pitched in, but I cannot locate an error. The program runs, BUT It does not draw increasingly larger cirsleswith each pick on the "Wait" dialogue. It runs me through the increasing count indicated in the mnenu bar, but draws only one circle visible at the end, the first radius, I would guess. It may be a logical error, I don't know. Can you help, please? Thanks. Jack (Program follows) main() { int count=1; int total=25; int mx,my,ml,mr,mk; printf("Pick the circle centerpoint:"); Qnumber(&total,1,50,"Enter the circle radius:"); WaitClick(&mx,&my,&ml,&mr,&mk); for (count;count<=total;count=count+1) { printf("We're at number: %d.",count); Circle(mx,my,count); Qtext("Wait."); } }