question archive Write program which computes the sum of all the even integers from 1 to N
Subject:Computer SciencePrice: Bought3
1 to N. N will be given by the user (your program will accept the number from the user for N) Also assume that N is even number (i.e., the user always enters an even number.). Please use a for loop [40 points]
Please using the following test case (your program asks the user to enter an even number and returns the sum):
Please enter an even number: 6 The sum is: 12
Note that the sum of 2, 4, and 6 is 12 (2+4+6)