saowu/blog

C语言程序集(46-60) | saowu's Blog

saowu opened this issue · 0 comments

saowu commented

https://saowu.github.io/c-yu-yan-cheng-xu-ji-46-60/

46.把数组元素依次向后移动一个位置

#include <stdio.h>
#include <math.h>

int main() {
int a[11];
for (int i = 0; i ...