Page MenuHomec4science

arithmetic_series.cpp
No OneTemporary

File Metadata

Created
Tue, Oct 1, 21:15

arithmetic_series.cpp

#include <iostream>
int arithmetic(int i) {
if (i == 1)
return 1;
return i + arithmetic(i - 1);
}
int main() {
int a = 5;
std::cout << arithmetic(a);
std::cout << std::endl;
}

Event Timeline