Randomize | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 2

Randomize

Is it possible to randomize the numbers: 4,9,16,24,36 with random function in C?

26th Oct 2017, 8:34 AM
Yusuf
Yusuf - avatar
12 Antworten
+ 6
#include <stdio.h> #include <stdlib.h> #include <time.h> int getRand(void){ static int is_init = 0; int r; if(!is_init){ srand(time(0)); is_init = 1; } r = rand()%5 + 2; return r*r - (r==5); } int main(){ int i; for(i = 0; i < 10; ++i) printf("%d\n",getRand()); return 0; }
27th Oct 2017, 8:28 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 7
#include <time.h> #include <stdio.h> #include <stdlib.h> int main(){ unsigned tab[] = {4,9,16,24,36}; unsigned i,j; srand(time(0)); for(i = 0; i < 5; ++i){ j = rand()%5; tab[i]^=tab[j]^=tab[i]^=tab[j]; /* swapping tab[i] and tab[j] */ } for(i = 0; i < 5; ++i) printf("%u ",tab[i]); putchar('\n'); return 0; }
26th Oct 2017, 8:59 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 5
@Joseph, I do not understand what you said. I am not struggling with C++ but having fun with it, and much more with C ! There are languages more useful than C++ ? Depends on what you like to do :p
27th Oct 2017, 8:25 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 2
Yeees @~ swim ~ ! I forgot to set is_init to 1 ! I correct it right away
27th Oct 2017, 3:46 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 2
English is not my mother language. I am trying to develop my english. That is why I cannot make sentences that are meaningful. Sorry for that. @Baptiste
28th Oct 2017, 4:05 PM
Yusuf
Yusuf - avatar
+ 2
Oh no @Joseph, sorry I did not mean that ! I mean to say that for me, you do not struggle to program, you have fun doing it ! So I did not understand this feeling, rather ^^
28th Oct 2017, 4:09 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 2
I understand now. :D @Baptiste
28th Oct 2017, 4:56 PM
Yusuf
Yusuf - avatar
+ 1
Thank you. But I forget to say I am trying to make this program without arrays. By the way, What are you doing with C++? You are really struggling with C++. But I think there are other languages that are much more useful than C++. @Baptiste
26th Oct 2017, 10:50 AM
Yusuf
Yusuf - avatar
+ 1
What is the reason for not using an array? If not using arrays what other option are accepted? The easiest would be to store the numbers in an array and randomly choose numbers from the array. Otherwise in C++ deque, vector, list, set, or map might be made to work. I have not studied C so not sure how much of C++ works in C.
26th Oct 2017, 1:11 PM
Bob
Bob - avatar
+ 1
Because in my education system, I cannot use what I have not learn. That is why I am not using arrays. I can use variables, loops, math.h, functions. I know it does not make sense but I have to. @Bob
26th Oct 2017, 3:01 PM
Yusuf
Yusuf - avatar
+ 1
This is quite long. May be a shorter way to do this within your requirement. https://code.sololearn.com/cGbPoMaN3NDC/?ref=app
27th Oct 2017, 2:01 AM
Bob
Bob - avatar
+ 1
In the question is that supposed to be 24 or 25?
27th Oct 2017, 1:39 PM
Bob
Bob - avatar