请编写函数 fun 该函数的功能是:移动一维数组中的内容;若数组中有 n 个整数,要求把下标从 0到p(p小于等于 口-1)的数组元素平移到数组的最后。在主程序中调用该西数,得到调整后的新数组的倒数三个数组元素的值并
时间: 2023-12-20 09:05:29 浏览: 84
2.请编写函数fun,它的功能是:求出1到1000之内能被7或11整除、但不能同时被7和11整除的所有整数并将它们放在a所指的数组中,通过n返回这些数的个数。_请编写函数fun,它的功能是 求出 1 到 1000 之间能被 7 或11整除、但不能同时被 7_Inspiration666的博客-CSDN博客.mht
根据您提供的问题,我已经编写了相应的代码,如下所示:
```c
#include <stdio.h>
#define MAX_SIZE 100
void fun(int a[], int n, int p);
int main() {
int a[MAX_SIZE], n, p;
printf("请输入数组元素的个数n和要移动的下标p:");
scanf("%d %d", &n, &p);
printf("请输入数组元素:");
for (int i = 0; i < n; i++) {
scanf("%d", &a[i]);
}
fun(a, n, p); // 调用函数移动数组元素
printf("移动后的数组:");
for (int i = 0; i < n; i++) {
printf("%d ", a[i]);
}
printf("\n倒数三个数组元素的值从小到大排列为:");
for (int i = n - 3; i < n; i++) {
for (int j = i + 1; j < n; j++) {
if (a[i] > a[j]) {
int temp = a[i];
a[i] = a[j];
a[j] = temp;
}
}
printf("%d ", a[i]);
}
return 0;
}
void fun(int a[], int n, int p) {
int temp[MAX_SIZE];
for (int i = 0; i < n; i++) {
temp[i] = a[i];
}
for (int i = 0; i < n; i++) {
if (i + p + 1 < n) {
a[i] = temp[i + p + 1];
}
else {
a[i] = temp[i + p + 1 - n];
}
}
}
```
函数 `fun` 的作用是将数组中下标从 0 到 p 的元素移动到数组的最后,实现方法是先将原数组的元素复制到临时数组中,再将临时数组中下标从 p+1 到 n-1 的元素复制到原数组的下标从 0 到 n-p-1 的位置上,最后将临时数组中下标从 0 到 p 的元素复制到原数组的下标从 n-p 到 n-1 的位置上。
主程序中先读入数组元素的个数 n 和要移动的下标 p,再依次读入每个元素的值。然后调用函数 `fun` 移动数组元素,打印移动后的数组。最后将倒数三个数组元素的值从小到大排序并输出到屏幕上。
阅读全文