Advertisement
Lauda

Untitled

Jun 7th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.57 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <stdbool.h>
  4. #include <time.h>
  5.  
  6.  
  7.  
  8. char charArray[22]="ABCDEFGHIJKLMNOPRSTUVZ";
  9. char usedChars[10]="xxxxxxxxxx";
  10. char randomSlovo()
  11. {
  12. return charArray[rand() % (22)];
  13. }
  14.  
  15. int main()
  16. {
  17. int i;
  18. int j;
  19. bool ok;
  20. char rndChar;
  21. srand(time(NULL));
  22. for (i = 0; i < 10; i++)
  23. {
  24. do{
  25. ok = true;
  26. rndChar=randomSlovo();
  27. for(j=0; j<10; j++)
  28. {
  29. if(usedChars[j]!='\0')
  30. {
  31.  
  32. if(rndChar==usedChars[j])
  33. {
  34. ok = false;
  35. }
  36. }
  37. else
  38. {
  39. ok = false;
  40. }
  41. }
  42. }
  43. while(!ok);
  44. usedChars[i]=rndChar;
  45. printf("%c",usedChars[i]);
  46. }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement