Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. bool numerovalido(int valor, int linf, int lsup)
  2. {
  3.     if (valor < linf || valor > lsup)
  4.         return false;
  5.     else
  6.         return true;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement