i = 0;
while(i < 3)
{
print(i);
i=i+1;
}
Answers
Answered by
1
Explanation:
i = 0;
while(i < 3)
{
print(i);
i=i+1;
}
output:
0 1 2
Similar questions
Accountancy,
4 months ago
Science,
4 months ago
Science,
8 months ago
Social Sciences,
8 months ago
English,
1 year ago
English,
1 year ago