c语言中假设数组a中有10个整型数据,循环左移5次,即第一个元素移至尾部,显示每次移动后的结果。
时间: 2023-05-16 10:05:26 浏览: 88
以下是C语言代码:
```c
#include <stdio.h>
int main() {
int a[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int i, j, temp;
for (i = 0; i < 5; i++) {
temp = a[0];
for (j = 0; j < 9; j++) {
a[j] = a[j + 1];
}
a[9] = temp;
printf("第%d次移动后的结果:", i + 1);
for (j = 0; j < 10; j++) {
printf("%d ", a[j]);
}
printf("\n");
}
return 0;
}
```
输出结果:
```
第1次移动后的结果:2 3 4 5 6 7 8 9 10 1
第2次移动后的结果:3 4 5 6 7 8 9 10 1 2
第3次移动后的结果:4 5 6 7 8 9 10 1 2 3
第4次移动后的结果:5 6 7 8 9 10 1 2 3 4
第5次移动后的结果:6 7 8 9 10 1 2 3 4 5
```
阅读全文