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.ex13;
- public class Main {
- // метод - блок кода у которого есть имя
- // имя метода - с маленькой буквы
- // Метод который вычисляет сумму двух целых чисел (значений типа int)
- // sum - название метода
- public static int sum(int a, int b){
- return (a + b);
- }
- // main - главный метод (точка входа в программу)
- public static void main(String[] args) {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement