Advertisement
hugol

Untitled

Jun 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Main {
  2.  
  3.     public static void main(String[] args) {
  4.  
  5.         int a = 10;
  6.         int b=11;
  7.  
  8.         if (a>b) {
  9.             System.out.println("A jest większe od B " +a+" "+b);
  10.         } else {
  11.             System.out.println("B jest większe od A" + b + " >" +a);
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement