Computer Science, asked by peher18, 11 months ago

Hi friends

need steps to make the Do While Loop in HTML:

please its urgent​

Answers

Answered by sakshi7048
1
<i>Hey mate

here's your answer ✔✔

⬇️⬇️⬇️

CLS
C=1
DO WHILE C <= 10
INPUT " enter a number " ; N
S = S + N
C= C + 1
LOOP
PRINT " the sum of 10 numbers = " ; S
END

✔✔ Hope it helps you ✔✔
Answered by siddhartharao77
0

(i) HTML is neither a programming language nor a scripting language.

(ii) HTML programs cannot be compiled/interpreted, they are parsed and transformed into DOM objects by the web browser, then they can render.

From the above mentioned points, I would like to say that:

It is not possible to make a Do-while loop in HTML language.

Hope this helps!

Similar questions