fix structure errors
Some checks failed
Pipeline / ci (push) Failing after 6s

This commit is contained in:
Wingleszy
2026-05-14 02:18:21 +03:00
parent cab5ebbeae
commit b37ecb493e
3 changed files with 33 additions and 13 deletions

19
project_cpp/functions.cpp Normal file
View File

@@ -0,0 +1,19 @@
#include <iostream>
#include <math.h>
int add (int a, int b) {
return a + b;
}
int multiple (int a, int b) {
return a * b;
}
int substraction (int a, int b) {
return a - b;
}
int devide (int a, int b) {
return round(a / b);
}