Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- int main(int argc, char **argv)
- {
- int nepoznati, poznati, brojac=10;
- srand(time(NULL));
- nepoznati=rand()%123;
- while(brojac>0){
- printf("Unesi broj: ");
- scanf("%d", &poznati);
- if (poznati<nepoznati) printf("Trazeni broj je veci!\n");
- else if (poznati>nepoznati) printf("Trazeni broj je manji!\n");
- else {
- printf("Pogodili ste broj!\n");
- return 0;
- }
- brojac--;
- }
- printf("Iskoristili ste sve pokusaje!\n");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement