Write a FOR loop that computes the following: >> The sum of…

Write a FOR loop that computes the following: >> The sum of all even numbers between start and stop (inclusive), when start and stop are read in as integers from user input. You can assume that the input will always be integers and stop is greater than start.  

Given an input integer, value, write a WHILE loop that print…

Given an input integer, value, write a WHILE loop that prints out all positive integers that are divisible by 10 and  less than value.   For example, if value is 100, print out the following: 10 20 30 40 50 60 70 80 90 1. Prompt the user to input an integer value.2. Assume that the input will always be a positive integer greater than 0.