Advertisement
sergAccount

Untitled

Oct 4th, 2020
1,175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.47 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package app50;
  7.  
  8. public class App50 {    
  9.     // метод у которого нет параметров
  10.     // если метод не возвращает значение, то используется тип void
  11.     public static void printHello(){
  12.         System.out.println("HELLO");
  13.     }
  14.     /*
  15.     Создать метод, который выполняет сложение трех строк -
  16.     переменных типа String (три параметра у метода).
  17.     Метод должен возвращать значение типа String.
  18.     Название (имя) метода: concat
  19.     Проверить данный метод - вызвать его в методе main.
  20.     */
  21.     public static String concat(String s1, String s2, String s3){        
  22.         return (s1 + s2 + s3);
  23.     }    
  24.     //
  25.     public static void main(String[] args) {
  26.         // TODO code application logic here
  27.         printHello();
  28.        
  29.         // тип String
  30.         String s = "JAVA";
  31.         System.out.println(s);
  32.         // +
  33.         String s1 = "HELLO" + s + "fff" + "VVVVVV";
  34.         System.out.println(s1);
  35.        
  36.         String value = concat("ONE", "TWO", "THREE");
  37.         System.out.println("value=" + value);
  38.     }    
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement