使用 for 循环打印乘法表的 C 程序
一个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("Enter number to print table: "); scanf("%d", &num); for(i=1; i<=10; i++){ printf("%d * %d = %d
", num, i, (num*i)); } return 0; }
输出
执行以上程序时,将产生以下结果 −
Enter number to print table: 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
广告