Цикл в JavaScript
:
Цитата:
*
**
***
****
*****
******
*******
********
*********
**********
( Зарание благодарю )
А обязательно при помощи двух циклов?
for(j=0;j<i+1;j++) {
document.write('*');
}
document.write('
');
}
Цитата:
Originally posted by #define
for(i=0;i<10;i++) {
for(j=0;j<i+1;j++) {
document.write('*');
}
document.write('
');
}
for(i=0;i<10;i++) {
for(j=0;j<i+1;j++) {
document.write('*');
}
document.write('
');
}
спасибо!