Beiträge: 317
Themen: 29
Registriert seit: Mar 2010
10.05.2010, 12:03
(Dieser Beitrag wurde zuletzt bearbeitet: 03.11.2010, 11:37 von SiXFeeTUndeR.)
na was sagt ihr dazu:
#include <iostream>
#include <time.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
char* strings[] = {"R", "L", "U", "D", "F", "B", "R'", "L'", "U'", "D'", "F'", "B'"};
int main(int argc, char** argv){
int counter = 0;
int timesspace = 1;
float times[1024];
float best;
float avgtime;
cout << "wie oft?:";
cin >> counter;
//timeval date;
//gettimeofday(&date, 0); (funzt so noch nedDodgy)
srand(atoi(argv[1]));
for (int i = 0; i < counter; i++){
for(int k = 0; k < 20; k++){
int zufall = rand();
zufall = zufall % 12;
cout << strings[zufall] << " ";
}
cout << endl;
cout << "Zeit eingeben:";
cin >> times[i];
}
cout << "Zeiten:\n";
for (int i = 0; i < counter; i++){
cout << times[i] << endl;
}
for (int i = 0; i < counter; i++){
avgtime = times[i] + avgtime;
}
avgtime = avgtime / float(counter);
best = times[0];
for (int i = 0; i < counter; i++){
best = fmin(times[i], best);
}
cout << "best = " << best << endl;
cout << "average = " << avgtime << endl;
}
funktioniert einbandfrei
ergebnis schaff ich irg ned von der konsole hier rein zu kopieren.