C中的简单计数程序(Simple Counting program in C)
优质
小牛编辑
126浏览
2023-12-01
计数是整数的序列,按升序排列,不为零。 开发一个用C编程语言计数的程序很简单,我们将在本章中看到。
算法 (Algorithm)
让我们首先看看计数的逐步程序应该是什么 -
START
Step 1 → Define start and end of counting
Step 2 → Iterate from start to end
Step 3 → Display loop value at each iteration
STOP
伪代码 (Pseudocode)
现在让我们看看这个算法的伪代码 -
procedure counting()
FOR value = START to END DO
DISPLAY value
END FOR
end procedure
实现 (Implementation)
现在,我们将看到该计划的实际执行情况 -
#include <stdio.h>
int main() {
int i, start, end;
start = 1;
end = 10;
for(i = start; i <= end; i++)
printf("%2d\n", i);
return 0;
}
输出 (Output)
该计划的输出应为 -
1
2
3
4
5
6
7
8
9
10