Advertisement
Guest User

Untitled

a guest
Sep 11th, 2013
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Testif {
  2. static String a = "a";
  3. static String b = "b";
  4. static boolean warunek1 = true;
  5. static boolean warunek2 = true;
  6.  
  7. public static void main(String[] args) {
  8. if (warunek1) {
  9. System.out.println(a);
  10. return;
  11. }
  12. if (warunek2) {
  13. System.out.println(b);
  14. return;
  15. }
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement