Auto commit

This commit is contained in:
smallkun 2025-03-18 08:52:39 +08:00
parent adb07f27c5
commit 09d0f90697
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#include <stdio.h>
int main(){
int a[10], b[10];
int i;
int *p, *q;
for(i=0, p=a;i<10;i++){
scanf("%d", p++);
}
for(i=0, p=a, q=b;i<10;i++){
if(*p%2==0){
*q++=*p;
}
p++;
}
for(i=0, p=b;i<q-b;i++){
printf("%d ", *p++);
}
printf("\n");
return 0;
}

View File

@ -742,6 +742,34 @@ int main(){
![image-20250227231209008](https://yp.smallkun.cn/markdown/image-20250227231209008.png!compress)
```c
#include <stdio.h>
int main(){
int a[10], b[10];
int i;
int *p, *q;
for(i=0, p=a;i<10;i++){
scanf("%d", p++);
}
for(i=0, p=a, q=b;i<10;i++){
if(*p%2==0){
*q++=*p;
}
p++;
}
for(i=0, p=b;i<q-b;i++){
printf("%d ", *p++);
}
printf("\n");
return 0;
}
```
### 指针-2