Skip to content

Instantly share code, notes, and snippets.

@OlgaKulikova
Last active August 29, 2015 14:10
Show Gist options
  • Save OlgaKulikova/9ba91220b0f4b3a4a81b to your computer and use it in GitHub Desktop.
Save OlgaKulikova/9ba91220b0f4b3a4a81b to your computer and use it in GitHub Desktop.
module1.lesson4.task3
package module1.lesson4.task3;
/*
Написать ф-ю, которая принимает на вход массив чисел и возвращает его длину в байтах как результат.
*/
public class Main {
public static void main(String[] args) {
int[] array = new int[] {1, 2, 3, 4, 5};
System.out.println(checkLength(array));
}
public static int checkLength(int[] array) {
return array.length * 4;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment