This website works better with JavaScript
Головна сторінка
Огляд
Довідка
Увійти
kjhammerle
/
snuvi-script-recoded
Слідкувати
1
Зірка
0
Відгалуження
0
Файли
Проблеми
0
Запити на злиття
0
Wiki
Гілка:
master
Гілки
Теги
master
snuvi-script-re...
/
test
/
while_break_continue
/
while_break_continue7
while_break_continue7
137 B
Постійне посилання
Історія
Запис
1
2
3
4
5
6
7
8
9
10
11
12
13
14
x
= 0;
while
(
x
< 10)
{
x
++;
if
(
x
== 2)
{
continue
;
}
if
(
x
> 6)
{
continue
;
}
p
rint(
x
);
}