Ask 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 pycharm)

+1
Answers (1)
  1. 30 May, 09:06
    0
    Lua

    for i = 12,86,2 do

    print (i)

    end
Know the Answer?
Not Sure About the Answer?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers