code and output(python)

Code for copying
total=1
i=4
while i<23:
if i%2==0:
total=total*i
i+=1
print(total)
write a while loop that will multiply up the even numbers from 4 to 22 (...
(java) Write a While loop that prompts the user for only even numbers. Keep prompting the user to enter even numbers until the user enters an odd number. After the loop ends, print the sum of the numbers. Do not include that last odd number. You should not store the numbers in an array, just keep track of the sum. Make sure to use a break statement in your code. You may assume that a java.util.Scanner object named input has...
Write a for loop that prints out all the even numbers between 100 and 2 in reverse order, i.e., 100, 98, 96, etc. (4 Points) NOTE: Write just the for loop no classes or methods such as main.
Create a while loop that prints the EVEN numbers between 2-50. Format these numbers such that one number per line.
Write a class XXX_MMDDLab3, where XXX is your Kean email id: •Using a for loop, print the numbers from 10 to 50 going up by 10. 10 20 30 … 50 •Using a second for loop, print the even numbers from 20 to 10: 20 18 16 … 10
Write a Java program which uses a for loop to sum all the even numbers from 1 to 30.
Using C++ 1. Create a while loop that counts even numbers from 2 to 10 2. Create a for loop that counts by five (i.e. 0, 5, 10, ...) from 0 to 100 3. Ask for a person's age and give them three tries to give you a correct age (between 0 and 100) 4. Use a for loop to list Celsius and Fahrenheit temperatures. The "C" should be from -20 to 20 and the F should be shown correspondingly...
(C++ Microsoft Visual Studio) [15 Points] Write a while loop to calculate the average of numbers entered by the user: Ask the user to enter an integer number or -1 to stop Add the entered numbers Compute the average of the numbers outside the loop after termination Print the average
Write a python program that uses a while loop to print numbers 100,98,96... all the way to 0. each number should be printed on a seperate line
Python Print integer numbers up to 100 (1, 2, 3, …..) using a while loop. Each integer number takes a separate line.
Use Rstudio
5. Write a repeat() loop that prints all the even numbers from 2 through 10.