“Zufallsfloat -Nummer in C.” Code-Antworten

c bekommen zufällige Schwimmer

//random float between 0 and a
float x = (float)rand()/(float)(RAND_MAX/a);
Excited Elk

Zufallsfloat -Nummer in C.

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main()
{
    srand(time(NULL));

    float max = 1.5;
  	//algorithm for creating a random number 
  				//(float cast) (float cast)	(RAND_MAX) is a costant included in the lib time.h
    printf("%f\n", ((float)rand()/(float)(RAND_MAX)) * max);
    return 0;
}
The Bad Programmer

Ähnliche Antworten wie “Zufallsfloat -Nummer in C.”

Fragen ähnlich wie “Zufallsfloat -Nummer in C.”

Weitere verwandte Antworten zu “Zufallsfloat -Nummer in C.” auf C

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen