-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.txt
257 lines (118 loc) · 3.1 KB
/
output.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
Header file found : library mathematical
Header file found : library time
:::: MAIN Function started ::::
Addition : 100+100 = 200
Print Expression 200
interger declaration
himel
a
variable Dection
himel
Value of the variable : 5
a
Value of the variable : 10
a
himel
Addition : 10+5 = 15
Print Expression 15
char declaration
name
variable Dection
name
H
Value of the variable : 0
name
Print Expression 0
interger declaration
himz
ARRAY Declaration [ ]
Size of the ARRAY is : 10
Single line comment found : # Single Comment check
Multi line comment found : '* Multiple line comment check *'
value of expression: 10
For Loop execution
value of i : 1 expression value : 10
value of i : 3 expression value : 10
value of i : 5 expression value : 10
value of i : 7 expression value : 10
value of i : 9 expression value : 10
Single line comment found : # For Loop Tested
Odd Even Number detection
Number : 10 is -> Even
Power : 2 ^ 5
value of expression: 32
value of expression in ELSE : 32
Reverse
Print Expression 0
Reverse For Loop execution
value of i : 10 expression value : 2
value of i : 8 expression value : 2
value of i : 6 expression value : 2
value of i : 4 expression value : 2
value of i : 2 expression value : 2
Single line comment found : # Reverse For Loop Tested
Odd Even Number detection
Number : 10 is -> Even
Power : 2 ^ 5
value of expression: 32
value of expression in ELSE : 32
Multi line comment found : '* IF-ELSE Statement Tested *'
Greater than : 10 > 11
himel
Print Expression 5
a
Less Than : 10 < 11
Addition : 20+10 = 30
value of expression: 30
FACTORIAL declaration
FACTORIAL of 5 is : 120
value of expression: 10
value of expression in ELSE-IF : 30
Single line comment found : # IF-ELSEIF-ELSE Statement Tested
Check Switch : 2
Multiplication : 10*20
Power : 3 ^ 3
Case No : 2 & expression value : 27
Mod : 82 MOD 10
SWITCH CASE Declaration & Case : 2 executed
Single line comment found : # SWITCH Case Tested
value of expression: 82
WHILE Loop execution
iteration loop : 1
iteration loop : 2
iteration loop : 3
iteration loop : 4
Single line comment found : # WHILE Loop Tested
value of expression: 28
REVERSE WHILE Loop execution
iteration loop : 5
iteration loop : 4
iteration loop : 3
iteration loop : 2
Multi line comment found : '* Reverse WHILE Loop Tested *'
Value of Sin(5) is 0.087156
value of expression: 0
Value of Cos(5) is 0.996195
value of expression: 0
Value of Tan(5) is 0.087489
value of expression: 0
Value of Log(5) is 1.609438
value of expression: 1
Value of Log10(5) is 0.698970
value of expression: 0
Addition : 10+20 = 30
Multiplication : 2*3
Division : 6/2
Subtraction : 30-3=27
Value of Sin(45) is 0.707108
Addition : 27+0 = 27
Value of Cos(45) is 0.707105
Addition : 27+0 = 27
Value of Tan(50) is 1.191759
Addition : 27+1 = 28
Value of Log(50) is 3.912023
Addition : 28+3 = 31
Value of Log10(50) is 1.698970
Addition : 31+1 = 32
Print Expression 32
:::: MAIN Function END ::::