This commit is contained in:
Wingleszy
2026-05-14 01:15:37 +03:00
commit 17301a9cf8
3 changed files with 83 additions and 0 deletions

26
project_cpp/main.cpp Normal file
View File

@@ -0,0 +1,26 @@
#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);
}
// int main () {
// return 0;
// }