35657

Untitled

Oct 28th, 2023
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.     setlocale(LC_ALL, "ru");
  8.    
  9.     int begin, end;
  10.     int sum = 0;
  11.  
  12.     cout << "Введите начало диапазона: ";
  13.     cin >> begin;
  14.  
  15.     cout << "Введите конец диапазона: ";
  16.     cin >> end;
  17.     end++;
  18.  
  19.     int num = begin;
  20.  
  21.     while (num != end) {
  22.         if (num % 2 == 1) {
  23.             sum += num;
  24.         }
  25.         num++;
  26.     }
  27.  
  28.     cout << sum << endl;
  29. }
Add Comment
Please, Sign In to add comment