Advertisement
Kyrexar

Patata caliente v0.1

Apr 25th, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.52 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h> // Para rand y srand
  3. #include <time.h> // Para time
  4.  
  5. int main(){
  6.     int numero, intento=0;
  7.    
  8.     srand(time(NULL));
  9.     numero = (rand()%100);
  10.    
  11.     printf(" \n Averigua que numero estoy pensando: ");
  12.    
  13.     do{
  14.        scanf("%d",&intento);
  15.        
  16.        if(numero==intento) printf(" \n Correcto! ");
  17.        if(numero<intento) printf(" Menos ");
  18.        if(numero>intento) printf(" Mas ");
  19.     }while( intento!=numero );
  20.        
  21.     system("PAUSE");
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement