摘要: #include <stdio.h> void Print(int arr[], int n); void Add(int arr[], int n); void Delete(int arr[], int n); void Find(int arr[], int n, int m); void C 阅读全文
posted @ 2020-12-15 11:37 kisfly 阅读(140) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int arr[1000] = { 1,2,3 }; int k = 0; int j = 0; int n = 3; printf("现在的数组:"); for (int i = 0; i < 3; i++) { printf("%d 阅读全文
posted @ 2020-12-15 11:34 kisfly 阅读(167) 评论(0) 推荐(0) 编辑