Pls provide a answer to this question.While loops code coach question seems like itself a bug doesnt accept any answer | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Pls provide a answer to this question.While loops code coach question seems like itself a bug doesnt accept any answer

You have a magic box that doubles the count of items you put, in every day. The given program takes the initial count of the items and the number of days as input. Task Write a program to calculate and output items' count on the last day.

25th Jul 2022, 6:23 AM
Aman Rai
Aman Rai - avatar
3 Answers
+ 2
So there is only one thing which can be changed in your code that is use print statement outside the while loop (without indentation/ or space) Which will print only final answer
25th Jul 2022, 8:46 AM
Pallavi Jha
Pallavi Jha - avatar
+ 3
I would suggest you to post your attempt... So that we can find issue in code. btw this solution can be possible i=1 while i<=days : items = items*2 i=i+1 print(items)
25th Jul 2022, 6:33 AM
Pallavi Jha
Pallavi Jha - avatar
0
while days>0: items*=2 days-=1 print(items) This is the code sol im writing yet shows wrong. Your code solution is working same that it shows 1case right and other wrong. Exitems input 3 days input 2 expected output-12 And my and your code answer contains 6 12 So the problem is we want just 12 in output not the 6
25th Jul 2022, 7:48 AM
Aman Rai
Aman Rai - avatar