I dont understand what the meaning of "copying" here what do i need to do ?
is there a method for copying or are we asking just to read inputs from the big arrays in the little ones and eventually how ??
package fr.codegym.task.task07.task0705;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
Un grand tableau et deux petits
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader Lecteur = new BufferedReader(new InputStreamReader(System.in));
int [] tableau = new int [20];
for (int i = 0 ; i < tableau.length; i++) {
String A = Lecteur.readLine();
tableau[i] = Integer.parseInt(A);
}
int [] tableau2 = new int [10];
for (int e = 0 ; e<=10; e++) {
}
int [] tableau3 = new int [10];
for (int g = 0; g>10 && g<= 20; g++) {
}
}
}