Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.mycompany.dz2;
- public class Main {
- /*
- Задача5
- Создать метод который вычисляет минимальное (наименьшее) значение из двух целых чисел
- Вызвать данный метод в методе main и вывести результат на экран
- Задача 6
- Создать метод который вычисляет минимальное (наименьшее) значение из трех целых чисел
- Вызвать данный метод в методе main и вывести результат на экран
- */
- //
- //
- public static int min(int a, int b){
- if(a<b){
- return a;
- }
- return b;
- }
- //
- public static int min1(int a, int b){
- return a<b ? a : b;
- }
- //
- public static void main(String[] args) {
- //
- int result = min(4, 6);
- System.out.println("result=" + result);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement