Filage

some other help

Nov 24th, 2022
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     setlocale(LC_ALL, "Rus");
  8.     int start;
  9.     int end;
  10.     int step;
  11.     cout << "Введите начало\n";
  12.     cin >> start;
  13.     cout << "Введите конец\n";
  14.     cin >> end;
  15.     cout << "Введите шаг\n";
  16.     cin >> step;
  17.     while (start < end) {
  18.         start = start + step;
  19.         cout << start  - step << " ";
  20.     }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment