Reads n integers from the keyboard into the array, writes the function compactintegers, deletes all elements with a value of 0 in the array, and then moves the elements to the first end of the array. Note that the Compactintegers function needs to accept the array and its number of elements as arguments, and the function return value should be the number of new elements of the array after the delete operation executes. Outputs the number of elements in the array after deletion and sequentially outputs the array elements.
Sample input: (Input format Description: 5 is the number of input data, 3 4 0 0 2 is a space-separated 5 integers)
3 4 0) 0 2
Sample output: (Output Format Description: 3 is the number of non-0 data, 3 4 2 is a space-separated 3 non-zero integers)
3
5 | |
7
0 0 7 0 0 9 0
Sample output:
2
7 9
3
0 0 0
Sample output:
0
The code is as follows:
#include <stdio.h>
void compactintegers (int a[], int n);
int main () {int N; scanf ("%d", &n);
int a[n];//defines a one-dimensional array of length N
for (int i=0; i<n; i++) {//input array A
scanf ("%d", &a[i]);
}
Compactintegers (A,n);
}
void compactintegers (int a[],int N) {
int j=0;
for (int i=0;i<n;i++) {
if (a[i]!=0) {
A[j]=a[i];
j + +;
}
}
printf ("%d\n", j);
for (int i=0;i<j;i++) {
printf ("%d", a[i]);
}
}
C language • Delete array 0 elements