All pastes #2054468 Raw Edit

Mine

public cpp v1 · immutable
#2054468 ·published 2011-05-06 07:07 UTC
rendered paste body
#include <iostream>int main() {	int x, y, val;		std::cout << "Enter value 1: ";	std::cin >> x;		std::cout << "Enter value 2: ";	std::cin >> y;	if(x > y) {		val = x;		x = y;		y = val;	}	val = 0;		for(int i = x; i <= y; ++i) {		if((i % 2) == 0)			val += i;	}	std::cout << "Sum: " << val << std::endl;	return 0;}