Advertisement
EChebanenko

Untitled

Aug 25th, 2020
1,765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Lesson5HomeWork {
  4.     public static void main(String args[]) {
  5.         int Less = lessOfTwo(7, 3);
  6.         System.out.println(Less);
  7.     }
  8.  
  9.     static int lessOfTwo(int a, int b) {
  10.         if (a > b) {
  11.             return b;
  12.         } else {
  13.             return a;
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement