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.
12 lines
362 B
12 lines
362 B
#ifndef MINIRECHNER_H
|
|
#define MINIRECHNER_H
|
|
|
|
float addieren(float a, float b);
|
|
float subtrahieren(float a, float b);
|
|
float multiplizieren(float a, float b);
|
|
float dividieren(float a, float b);
|
|
float rest(float a, float b);
|
|
float groesster_gemeinsammer_teiler(float a, float b);
|
|
float kleinstes_gemeinsammes_vielfaches(float a, float b);
|
|
|
|
#endif // MINIRECHNER_H
|