cpp-newproject/src/inc3/calculator.h

16 lines
257 B
C++

//
// Created by gmgauthier on 20/07/23.
//
#ifndef NEWPROJECT_CALCULATOR_H
#define NEWPROJECT_CALCULATOR_H
#include <iostream>
int sum(int, int);
int diff(int, int);
int prod(int, int);
void outmsg(const std::string&);
#endif //NEWPROJECT_CALCULATOR_H