C 语言中的逆向计数程序



逆向计数是按降序排列的连续整数序列,其中不包含零。在 C 编程语言中开发一个计数程序非常简单,我们将在本章中看到这一点。

算法

我们首先来看看逆向计数的分步过程 -

START
   Step 1 → Define start and end of counting
   Step 2 → Iterate from end to start
   Step 3 → Display loop value at each iteration
STOP

伪代码

现在我们来看该算法的伪代码 -

procedure counting()

   FOR value = END to START DO
      DISPLAY value
   END FOR

end procedure

实现

现在,我们来看程序的实际实现 -

#include <stdio.h>

int main() {
   int i, start, end;

   start = 1;
   end = 10;

   //reverse counting, we'll interchange loop variables

   for(i = end; i >= start; i--) 
      printf("%2d\n", i);

   return 0;
}

输出

该程序的输出应为 -

10
 9
 8
 7
 6
 5
 4
 3
 2
 1
loop_examples_in_c.htm
广告