使用 for 循环在 C 语言中打印乘法表的 C 程序
for 循环 是一种重复控制结构,它允许您有效地编写一个需要执行特定次数的循环。
算法
下面给出了一种使用 for 循环在 C 语言中打印乘法表的算法−
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