划分数组并从每个块中减去数组元素:C程序

时间:2017-08-19 17:10:36

标签: c

我有一个有100个数字的数组说[1,2,3,4,5,6 .... 98,99,100]。我想将它分成25组,每组包含4个元素,然后用一个块的每个元素减去其他块的元素。例如:如果25个中的三个块标记为A,B,C并包含以下元素:

A [1,2,3,4], 
B[5,6,7,8] &
C[9,10,11,12]

然后减法就像这样:

(A-B, A-C),
(B-A, B-C) & 
(C-A, C-B) 

即。

1-5,1-6,1-7,1-8,1-9,1-10,1-11,1-12; then 
2-5,2-6,2-6,2-8,2-9,2-10,2-11,2-12; then 
3-5,3-6,3-7,3-8,3-9,3-10,3-11,3-12; then 
4-5,4-6,4-7,4-8,4-9,4-10,4-11,4-12; 

THEN     5-1,5-2,5-3,5-4,5-9,5-10,5-11,5-12; 并且喜欢明智..

任何人都可以帮我写C程序吗? 我写的代码是部分的,完全没有完成上述任务。代码是:

#include <stdio.h>
#include <conio.h>

void main()
{
  int a[100]={1,2,3,4.....,98,99,100};
  int i=0, j=0;
  int x[100], y[100];
  // considering only 12 numbers for the sake of simplicity
  for (i=0;i<12;i++)
  {
    for(j=0;j<8;j++)
    {
      x[j] = a[i] - a[r+4];
    }
    y[i] = x[i];
  }
}

1 个答案:

答案 0 :(得分:-1)

#include <stdio.h>

int main(void) {

    int N, i;
    scanf("%d", &N);

    int numArray[N]; // Define an array of four integers

    // Get inputs for the array elements
    for (i=0;i<N; i++) {
        scanf("%d", &numArray[i]);
    }

    int sum = 0;
    // Write here the logic to add these integers:
    for (i=0;i<N;i++) sum += numArray[i];



    printf("%d\n",sum);  // Print the sum

    return 0;
}