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.app11;
- public class Test {
- // определение (объявление) метода
- // 1) имя метода
- // Метод add (имя метода) - скадывает два целых числа (метод для вычисления суммы двух чисел)
- // static - означает что метод статический
- // a, b - параметры метода типа int
- public static int add(int a, int b){
- // используем оператор управления return для получения результата //return (a+b);
- int result = a + b;
- return result;
- }
- // метод printStr - выводит на экран строку - параметр метода (значение типа String)
- // если не требуется вернуть результат определенного типа - используем тип void
- public static void printStr(String s){
- System.out.println(s);
- }
- // статический метод - вызывается призвапуске программы на выполение
- public static void main(String[] args) {
- System.out.println("main");
- // вызываем метод с именем add и передаем необходимые значения
- // вызов метода add
- int result = add(10, 20);
- System.out.println(result);
- result = add(40, 20);
- System.out.println(result);
- //int c = 10 + 20;
- // вызываем метод printStr
- printStr("HELLO JAVA!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement