init
This commit is contained in:
26
project_cpp/main.cpp
Normal file
26
project_cpp/main.cpp
Normal 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;
|
||||
// }
|
||||
Reference in New Issue
Block a user