/
Puzzman
/
basic_programming
Обзор
Документация
Войти
/
Puzzman
/
basic_programming
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
homework_06_1/Maths.h
10 строк
422 B
Puzzanis
refactor
06 сен 2024, 15:48
06 сен 2024, 15:48
c39105e
Код
Авторство
О чём код?
#ifndef MATHS_H #define MATHS_H int sum(int a, int b); //definition of the addition function int diff(int a, int b); //definition of the subtraction function int multiplication(int a, int b); //definition of the multiplication function double division(int a, int b); //definition of the division function long int pow(int a, int b); //definition of the exponentiation function #endif