Page MenuHomec4science

main.cc
No OneTemporary

File Metadata

Created
Mon, May 13, 11:31
/* MAIN FILE */
// Include Libraries
#include "LibSeries.hh"
#include <iostream>
#include <cmath>
#include <bits/stdc++.h>
using namespace std;
// Main Block
int main(int argc, char *argv[]) {
double MyResult;
// Create an instance obj1 of the class ComputeArithmetic
ComputeArithmetic obj1;
// Call the method associate to this class
MyResult = obj1.compute(4);
// Print Result
std::cout << "The result is: " << MyResult << endl;
return 0;
}

Event Timeline