Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions TP4/src/operator.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#ifndef OPERATOR_H
#define OPERATOR_H

int somme(int n1, int n2);
int difference(int n1, int n2);
int produit(int n1, int n2);
int quotient(int n1, int n2);
int modulo(int n1, int n2);
int et_logique(int n1, int n2);
int ou_logique(int n1, int n2);
int negation(int n1, int n2);

#endif