Skip to content

Instantly share code, notes, and snippets.

@Titory0
Created January 17, 2023 11:30
Show Gist options
  • Save Titory0/01ccb9239dd107185c6f3d3cb1b99ed4 to your computer and use it in GitHub Desktop.
Save Titory0/01ccb9239dd107185c6f3d3cb1b99ed4 to your computer and use it in GitHub Desktop.
public static int ft_blockbuster(int expense)
{
float semaine=31000000;
float rembourse=0;
int semainesC=1;
while(rembourse<expense)
{
rembourse+=semaine;
if(rembourse>expense)
{
return semainesC;
}
semainesC+=1;
semaine=semaine *0.8f;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment