Advertisement
ebx

Pogadjanje broja

ebx
Aug 30th, 2011
533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.51 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main(int argc, char **argv)
  6. {
  7.     int nepoznati, poznati, brojac=10;
  8.    
  9.     srand(time(NULL));
  10.     nepoznati=rand()%123;
  11.     while(brojac>0){
  12.         printf("Unesi broj: ");
  13.         scanf("%d", &poznati);
  14.         if (poznati<nepoznati) printf("Trazeni broj je veci!\n");
  15.         else if (poznati>nepoznati) printf("Trazeni broj je manji!\n");
  16.         else {
  17.             printf("Pogodili ste broj!\n");
  18.             return 0;
  19.         }
  20.         brojac--;
  21.     }
  22.     printf("Iskoristili ste sve pokusaje!\n");
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement