cgorrillaha

Untitled

Oct 20th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class IfElseTest {
  2. public static void main(String[] args) {
  3. int n1=2, n2=4, n3=19;
  4.  
  5. if(n1<n2){
  6. System.out.println("they are not equal");
  7. }
  8. else{
  9. System.out.println("they are equal");
  10. }
  11.  
  12. }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment