Advertisement
Marcos_Carvalho

questao1 laura

Apr 1st, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main (){
  6.    
  7.     int cont= 0;
  8.    
  9.     do{
  10.  
  11.    
  12.    
  13.         int num=rand()%5+5;
  14.    
  15.         cont++;
  16.         printf("%d\n", num);
  17.    
  18.    
  19.     }   while(cont<20);
  20.  
  21.  
  22.  
  23. return 0;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement