#include<studio.h>
int main()
{
  float i = 34.67;
const float x= 25;
  do{
printf("%f",i);
i-=2;
}while(i<=x);

return 0;
}

Posted on by