Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
guest /
shared /
cmake /
src /
lib /
math /
Delete
Unzip
Name
Size
Permission
Date
Action
CMakeLists.txt
132
B
-rwxrwxrwx
2022-12-06 06:59
operations.cpp
465
B
-rwxrwxrwx
2022-12-06 05:08
operations.hpp
285
B
-rwxrwxrwx
2022-12-06 05:25
Save
Rename
#include <exception> #include <stdexcept> #include <iostream> #include "operations.hpp" int math::operations::sum(const int &a, const int &b){ return a + b; } int math::operations::mult(const int &a, const int &b){ return a * b; } int math::operations::div(const int &a, const int &b){ if(b == 0){ throw std::overflow_error("Divide by 0* exception"); } return a / b; } int math::operations::sub(const int &a, const int &b){ return a - b; }