Compare commits

..

No commits in common. "9b45b5e26cd158ef345e9d4fcbc473ae49e14919" and "85dd87554f07cf31d2e43daa58eef445df410120" have entirely different histories.

2 changed files with 0 additions and 11 deletions

View File

@ -1 +0,0 @@
The sum of numbers from 1 to 100 is: 5050

View File

@ -1,10 +0,0 @@
#include <iostream>
int main() {
int sum = 0;
for (int i = 1; i <= 100; i++) {
sum += i;
}
std::cout << "The sum of numbers from 1 to 100 is: " << sum << std::endl;
return 0;
}