Skip to content
Snippets Groups Projects
Commit 0677cc4e authored by Adrien Rougny's avatar Adrien Rougny
Browse files

bug procedure_math_exam_1.cpp

parent e924ac2a
Branches
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
using namespace std;
void Pascal(int &acc, int n) {
int Pascal(int &acc, int n) {
acc = 0;
for (int i = n; i > 0; i--)
acc += i;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment