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.

13 lines
255 B

  1. //
  2. // Created by Justin Trausch on 06.02.2024.
  3. //
  4. #ifndef LINKES_TWIX_DIVISION_H
  5. #define LINKES_TWIX_DIVISION_H
  6. int divisionInt(int a, int b);
  7. double divisionDouble(double a, double b);
  8. int divisionByTwo(int a, int b);
  9. #endif //LINKES_TWIX_DIVISION_H