Math, asked by gunao, 1 year ago

write the table of 2 ? upto 100


siddhartharao77: #include <stdio.h>
int main()
{
int a, i;

printf("Enter number: ");
scanf("%d",&a);

for(i=1; i<=100; ++i)
{
printf("%d * %d = %d \n", a, i, a*i);
}

return 0;
}

Answers

Answered by jaison777
2

2 \\ 4 \\ 6 \\ 8 \\ 10 \\ 12 \\ 14 \\ 16 \\ 18 \\ 20 \\ 22 \\ 24 \\ 26 \\ 28 \\ 30 \\ 32 \\ 34 \\ 36 \\ 38 \\ 40 \\ 42 \\ 44 \\ 46 \\ 48 \\ 50 \\ 52 \\ 54 \\ 56 \\ 58 \\ 60 \\ 62 \\ 64 \\ 66 \\ 68 \\ 70 \\ 72 \\ 74 \\ 76 \\ 78 \\ 80 \\ 82 \\ 84 \\ 86 \\ 88 \\ 90 \\ 92 \\ 94 \\ 96 \\ 98 \\ 100
Answered by Anonymous
3
2
4
6
10
12
14
16
17
20
22
24
26
28
30
32
34
36
38
40
42
44
46
50
52
54
56
58
60
62
64
66
68
70
72
74
76
78
80
82
84
86
88
90
92
94
96
98
100

HOPE IT HELPS YOU!!!
Similar questions