Use the while statement to find the "remainder divided by 3; Divide the remainder 3 by 5; Divide the number 2 "by 7 and only type one line.

# include & ltstdio.h & gt

void main()

{

int i,k = 0;

for(I = 1; I<= 1000; i++)

{

if(I % 7 = = 2 & amp; & ampi % 5 = = 3 & amp& ampi%3==2)

{

printf("%d ",I);

k++;

}

other

Continue;

If ((k! = 0)& amp; & amp(k%5==0))

printf(" \ n ");

}

}

Copy the above code directly to C for compilation and execution! ! !