[debutant inside] Comment on fait pour ...(UNIX)

Comment on fait pour ...(UNIX) [debutant inside] - Programmation

Marsh Posté le 31-05-2002 à 17:15:50    

...affecter un chiffre aleatoire compris entre n et p a une variable ?
merci

Reply

Marsh Posté le 31-05-2002 à 17:15:50   

Reply

Marsh Posté le 31-05-2002 à 17:22:10    

j'avai su mais je sais plus :(

Reply

Marsh Posté le 31-05-2002 à 17:27:07    

mr_mat a écrit a écrit :

j'avai su mais je sais plus :(  




 
On applaudit la formidable contribution de mr_mat !!!
non j'deconne...merci pour le p'tit  :bounce:

Reply

Marsh Posté le 31-05-2002 à 17:41:37    

karoli a écrit a écrit :

 
 
On applaudit la formidable contribution de mr_mat !!!
non j'deconne...merci pour le p'tit  :bounce:  



:D

Reply

Marsh Posté le 31-05-2002 à 19:02:20    

en quel langage?  :heink:


---------------
Join us now and share the software;
Reply

Marsh Posté le 31-05-2002 à 19:39:06    

cassidy a écrit a écrit :

en quel langage?  :heink:  




bonne question...c'est pour un script bash donc je suppose  
en C :??:

Reply

Marsh Posté le 31-05-2002 à 19:41:56    

int randValue = n + (rand()%(p-n));

Reply

Marsh Posté le 31-05-2002 à 19:43:39    

avec un srandom au debut :D


---------------
Suri.morkitu.org : Balades au coeur de la ville...
Reply

Marsh Posté le 31-05-2002 à 19:44:22    

Suri a écrit a écrit :

avec un srandom au debut :D  




 
 
pas srandom, srand  ! [:kaola] :O

Reply

Marsh Posté le 31-05-2002 à 19:47:41    

chrisbk a écrit a écrit :

 
 
 
pas srandom, srand  ! [:kaola] :O  




 
 :o  
srandom puis random :o
sous Netbsd en tout cas (et vu que netbsd c un unix je reponds au sujet :D)
 
edit:

Citation :


NAME
     rand, srand, rand_r - bad random number generator
 
LIBRARY
     Standard C Library (libc, -lc)
 
SYNOPSIS
     #include <stdlib.h>
 
     void
     srand(unsigned int seed);
 
     int
     rand(void);
 
     int
     rand_r(unsigned int *seed);
 
DESCRIPTION
     These interfaces are obsoleted by random(3).


 
:D

 

[jfdsdjhfuetppo]--Message édité par Suri le 31-05-2002 à 19:49:41--[/jfdsdjhfuetppo]


---------------
Suri.morkitu.org : Balades au coeur de la ville...
Reply

Marsh Posté le 31-05-2002 à 19:47:41   

Reply

Marsh Posté le 31-05-2002 à 19:55:04    

Mais non, il veut faire un script sous unix.
Or, python est un langage de script qui marche sous unix.
 
# initialisation
from random import Random
g = Random()
 
# appel
g.randrange(n,p)
 
# C'est tout.


---------------
« No question is too silly to ask, but, of course, some are too silly to answer. » -- Perl book
Reply

Marsh Posté le 31-05-2002 à 21:20:41    

merci avec tout ca je devrais m'en sortir...
Mais ne vous battez pas !

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed