用 C 语言打印数组的程序



此程序将指引您了解如何在 C 中打印数组。我们需要声明并定义一个数组,然后循环数组长度。在每次迭代中,我们将打印一个数组的索引值。我们可以从迭代本身获取此索引值。

算法

我们先来看看这个程序的分步步骤:

START
   Step 1 → Take an array A and define its values
   Step 2 → Loop for each value of A
   Step 3 → Display A[n] where n is the value of current iteration
STOP

伪代码

我们现在来看看这个算法的伪代码:

procedure print_array(A)

   FOR EACH value in A DO
      DISPLAY A[n]
   END FOR

end procedure

实现

源自上述伪代码的实现如下:

#include <stdio.h>

int main() {
   int array[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
   int loop;

   for(loop = 0; loop < 10; loop++)
      printf("%d ", array[loop]);
      
   return 0;
}

输出应如下所示:

1 2 3 4 5 6 7 8 9 0
array_examples_in_c.htm
广告