Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package Uebung;
  2.  
  3. interface testen{
  4. public boolean test(int i);
  5. }
  6.  
  7. public class Test1 {
  8.  
  9. public static void main(String[] args) {
  10.  
  11. testen test = zahlen -> {
  12. return (zahlen>=0)? true : false;
  13. };
  14. System.out.println(test.test(5));
  15. System.out.println(test.test(-5));
  16.  
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement