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.
21 lines
254 B
21 lines
254 B
//1
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include "Mathe.h"
|
|
|
|
//2
|
|
void initialisiereZufallsgenerator();
|
|
|
|
|
|
//3
|
|
int generiereZufallszahl(int min, int max);
|
|
|
|
|
|
//4
|
|
char generiereZufallsOperator();
|
|
|
|
|
|
//5
|
|
int addiere(int zahl1, int zahl2);
|
|
|