Pembayaran Des Vhicules a la sortie de station de langue c

#include<stdio.h>
#include<conio.h>

int main()  
{  
	int day = 1;
	float amount = .01;

  	while(day <= 31){
  		amount *= 2;
  		printf("\n\t >> Day%d: The Amount is : %.2f$", day, amount);
  		day++;
	  }
	  
  	getch();
    return 0;  
}  
// MOHAMED LAAGUILI
MOHAMED LAAGUILI