This file contains 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 Main { | |
public static void main(String[] args) { | |
// write your code here | |
} | |
} |
This file contains 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
package lesson_1; | |
import java.util.Arrays; | |
import java.util.Random; | |
public class Test_1 { | |
public static void main(String[] args) { | |
int data1[] = { 1, 10, 5, 7, 6 }; | |
int data2[] = null; | |
int data3[] = {}; |