Advertisement
TwITe

Stepik_Task_13

Jul 25th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. //goo.gl/RGA6EX
  2. #include <iostream>
  3. #include <cmath>
  4. using namespace std;
  5.  
  6. int sum() {
  7.     int n;
  8.     cin >> n;
  9.     if (n == 0) {
  10.         return n;
  11.     }
  12.     return n + sum();
  13. }
  14.  
  15. int main() {
  16.     cout << sum();
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement