Skip to content

Instantly share code, notes, and snippets.

@FreeFly19
Created November 7, 2016 21:33
Show Gist options
  • Select an option

  • Save FreeFly19/ab120f4c8b37627afd23e6be4c551489 to your computer and use it in GitHub Desktop.

Select an option

Save FreeFly19/ab120f4c8b37627afd23e6be4c551489 to your computer and use it in GitHub Desktop.
Home tasks #5
public class Ex1 {
public static void main(String[] args) {
printTable(7, 8)
}
// Ваша реалізація функції "printTable"
}
public class Ex2 {
public static void main(String[] args) {
int[] arr = new int[] {4,2,7,3,5};
System.out.println(multiplication(arr));//840
}
// Ваша реалізація функції "multiplication"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment