Ask Question
21 September, 21:38

Write a short program using a while loop which will display all of the even numbers starting with 12 and ending with 86. (test your program in pycharm)

+4
Answers (1)
  1. 22 September, 01:05
    0
    Lua

    for i = 12,86,2 do

    print (i)

    end
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a short program using a while loop which will display all of the even numbers starting with 12 and ending with 86. (test your program ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers