A.for(int a=1;a<=10;a++);
B.int a=1;
do
{
a++;
}while(a<=10)
C.int a=1:
while(a<=10)
} l
D.for(int a=1;a<=10;a++)a++;