Skip to content

Instantly share code, notes, and snippets.

View MALEKBEN19's full-sized avatar
๐Ÿ˜€
Working from home

Abdelmalek Bensidhome MALEKBEN19

๐Ÿ˜€
Working from home
View GitHub Profile
@MALEKBEN19
MALEKBEN19 / gist:e73c7a1dfa28e59365601edb9268dab0
Created February 22, 2026 16:47
First OPP Calculator Project
#include <iostream>
#include<cstdlib>
#include<string>
using namespace std;
enum _enOpratorSign { Add = '+', Sub = '-', Divide = '/', Multi = '*', Clear = ' ' };
class clsCalaculator {
private: