for循环是一种重复控制结构,可让您有效地编写需要执行特定次数的循环。
下面给出的是一种使用C语言中的for循环打印乘法表的算法-
Step 1: Enter a number to print table at runtime. Step 2: Read that number from keyboard. Step 3: Using for loop print number*I 10 times. // for(i=1; i<=10; i++) Step 4: Print num*I 10 times where i=0 to 10.
以下是用于打印给定数字的乘法表的C程序-
#include <stdio.h> int main(){ int i, num; /* Input a number to print table */ printf("输入编号以打印表格: "); scanf("%d", &num); for(i=1; i<=10; i++){ printf("%d * %d = %d\n", num, i, (num*i)); } return 0; }输出结果
执行以上程序后,将产生以下结果-
输入编号以打印表格: 7 7 * 1 = 7 7 * 2 = 14 7 * 3 = 21 7 * 4 = 28 7 * 5 = 35 7 * 6 = 42 7 * 7 = 49 7 * 8 = 56 7 * 9 = 63 7 * 10 = 70