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 appdz3;
- public class AppDz3 {
- /*
- Дома
- 1) Создать метод который находит
- наибольшее (максимальное) значение из двух целых чисел -
- значений типа int.
- Метод должен возвращать значение типа int
- Проверить данный метод - вызвать его в методе main.
- */
- public static int max(int a, int b){
- if(a>b){
- return a;
- }
- return b;
- }
- /*
- 2) Создать метод который находит
- наибольшее (максимальное) значение из трех целых чисел -
- значений типа int.
- Метод должен возвращать значение типа int
- Проверить данный метод - вызвать его в методе main.
- */
- public static int max3(int a, int b, int c){
- return max(max(a, b), c);
- }
- /*
- 3) Создать метод, который выполняет сложение четырех строк -
- переменных типа String (четырех параметров метода).
- Метод должен возвращать значение типа String.
- Название (имя) метода: concat2
- */
- public static String concat2(String s1, String s2, String s3, String s4){
- //String result = s1 + s2 + s3 + s4;
- //return result;
- return s1 + s2 + s3 + s4;
- }
- public static void main(String[] args) {
- // TODO code application logic here
- int result = max(20, 10);
- System.out.println("result=" + result);
- int value1 = 20;
- int result2 = max3(value1, 60, 10);
- System.out.println("result2=" + result2);
- String str = concat2("HELLO", " JAVA ", "!", "!");
- System.out.println("str=" + str);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement