+ 2
Wts br?
5 Answers
+ 12
i don't know u r talking abt <br> or loops
//i know loops better š
šsuppose u want to print a number "10" , 20 times on the screen ... would u type 10,10 ,.... 20 times ... it will take much time ... so it will be better to use a loop & print it 10 times ... loops means a pt. from where u start , u will reach that pt. again until u comeout of that loop
//example (java while loop ... most easy) ::::
int a=20;
while (a>=1){
System.out.println(10);
a--;
}
š<br> is just like System.out.println() in java ... its name give its definition ...break line āŗ
+ 7
You talk about <br> tag
if is it then <br> mean break line tag command in tag for using break line and start a new line ....
+ 6
Your question is unclear. Can you please elaborate it?
https://www.sololearn.com/discuss/333866/?ref=app
+ 3
br tag in HTML is used to leave an extra blank line
+ 1
Line breaks