Creative Commons License Foxbond's Repo

/** (c) 2012 Michał (Foxbond) Chraniuk */
#include <iostream>

using namespace std;

int main () {
	
	int suma=0;
	
	for (int i=100;i<1000;i++){
		suma+=i;
	}
	
	cout << "Suma liczb: " << suma << "\n";
	
	system("pause");
	return 0;
}

> Back