Java methods 📞

Описание к видео Java methods 📞

Java methods tutorial explained

#java #methods #tutorial

public class Main {

public static void main(String[] args) {

// method = a block of code that is executed whenever it is called upon

int x = 3;
int y = 4;

int z = add(x,y);

System.out.println(z);
}

static int add(int x, int y) {

int z = x + y;
return z;

}

}

Комментарии

Информация по комментариям в разработке