You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
257 B

  1. #pragma once
  2. class MathLibrary
  3. {
  4. public:
  5. static double Divide(double a, double b);
  6. static bool IsPositive(int n);
  7. static bool CheckRange(int a, int b);
  8. static double CalculateDiscount(int age, bool isMember);
  9. };
  10. int myfunc(int a, int b);