Guest User

Untitled

a guest
Jul 18th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class Rofl
  2. {
  3. public boolean foo( String [] a )
  4. {
  5. for (int i=0; i<=a.length-1 ; i++ )
  6. {
  7. if (a[i].equals("IBM"))
  8. {
  9. return true;
  10. }
  11. else
  12. {
  13. return false;
  14. }
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment