Problem with float calculation and awk

Hi All,

can some body help me to script the below logic. Basically am facing
problem with float calculation. Also i need this to be done inside a single awk.
I tried lot of tuning but still nothing is getting displayed, nor any errors
param=50
value=19.23
for(i=0;i<4;i++)
{
param=param*10;
value=value+param/100
}
print $value $param

Thnaks in advance
JS

awk -v p=50 -v v=19.23 'BEGIN{for(i=1;i<4;i++){p=p*10;v=v+p/100;print p,v}}'

Thank you so much for ur time ..