Created
November 7, 2016 21:33
-
-
Save FreeFly19/ab120f4c8b37627afd23e6be4c551489 to your computer and use it in GitHub Desktop.
Home tasks #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Ex1 { | |
| public static void main(String[] args) { | |
| printTable(7, 8) | |
| } | |
| // Ваша реалізація функції "printTable" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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