known problem. You are offered a choice of either $1.000.000 or $0.01 (one penny) doubled every day for 30 days (the resulting | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
- 2

known problem. You are offered a choice of either $1.000.000 or $0.01 (one penny) doubled every day for 30 days (the resulting

4th Oct 2021, 5:40 PM
Ria Zakkia
Ria Zakkia - avatar
7 Respostas
+ 7
Ria Zakkia , before we can help you, you should show us your attempt first. if you have not done a try by yourself upto now, please do so. Put your code in playground and link it here. thanks!
4th Oct 2021, 5:42 PM
Lothar
Lothar - avatar
0
known problem. You are offered a choice of either $1.000.000 or $0.01 (one penny) doubled every day for 30 days (the resulting amount is doubled every day). Task: Write a program to calculate the amount that will result from the doubling to understand which choice results in a larger amount.
4th Oct 2021, 5:40 PM
Ria Zakkia
Ria Zakkia - avatar
0
1000000*(2**30)
4th Oct 2021, 5:46 PM
Ria Zakkia
Ria Zakkia - avatar
0
That would be the formula for doubling the 1.000.000 every day.
4th Oct 2021, 5:58 PM
Simon Sauter
Simon Sauter - avatar
0
print(0.01*(2**30))
20th Nov 2021, 2:36 PM
Yuuki
0
Here you are trying to compare how much you would have at the end of the month if you chose $1.000.000 compared to getting 0.01 which will double everyday for a period of 30 days. The Syntax will be print(0.01(2**30))//double is 2 which you raise to power 30 then multiply by 0.01
30th Jul 2022, 6:39 PM
Kelvin Musyoka Musembi
Kelvin Musyoka Musembi - avatar
0
print(0.01* 2**30) you have to do squared first
3rd Feb 2023, 1:06 AM
William Kazimierczuk
William Kazimierczuk - avatar