Advertisement
35657

Untitled

Apr 11th, 2024
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. using namespace std;
  5.  
  6. int sum(int a, int b) {
  7.     if (a == b) {
  8.         return b;
  9.     }
  10.     return a + sum(a + 1, b);
  11. }
  12.  
  13.  
  14. int main() {
  15.     setlocale(LC_ALL, "ru");
  16.  
  17.     cout << sum(3, 8);
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement