Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdbool.h>
- #include <time.h>
- char charArray[22]="ABCDEFGHIJKLMNOPRSTUVZ";
- char usedChars[10]="xxxxxxxxxx";
- char randomSlovo()
- {
- return charArray[rand() % (22)];
- }
- int main()
- {
- int i;
- int j;
- bool ok;
- char rndChar;
- srand(time(NULL));
- for (i = 0; i < 10; i++)
- {
- do{
- ok = true;
- rndChar=randomSlovo();
- for(j=0; j<10; j++)
- {
- if(usedChars[j]!='\0')
- {
- if(rndChar==usedChars[j])
- {
- ok = false;
- }
- }
- else
- {
- ok = false;
- }
- }
- }
- while(!ok);
- usedChars[i]=rndChar;
- printf("%c",usedChars[i]);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement