Search:

Type: Posts; User: vviston

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    1,245

    Re: How can I add two data arrays ?

    My problem is, that it doesnt work...i just want add two arrays and save it to the new array. And i dont know how i can use this function with the specific numbers ?
  2. Replies
    4
    Views
    1,245

    How can I add two data arrays ?

    public static int[] arrayAdd(int[] p, int[] q) {

    for (int i = 0; i < p.length; i++) {
    for (int j = 0; j < q.length; j++) {
    int add [] = p[i] + q[j];...
Results 1 to 2 of 2