Guest User

Untitled

a guest
Apr 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1.  
  2. i=0;
  3. while (1)
  4.  
  5. [
  6. scanf("%lf", &a);
  7. if (a<0) break;
  8.  
  9. if (i==0)
  10. {
  11. min=a;
  12. }
  13.  
  14. else
  15. {
  16. if(min>a)
  17. {
  18. min=a;
  19. }
  20. }
  21.  
  22. i++;
  23.  
  24. ]
Add Comment
Please, Sign In to add comment