Computer Science, asked by jindalavi28, 8 months ago

i = 0;
while(i < 3)
{
print(i);
i=i+1;
}​

Answers

Answered by bktbunu
1

Explanation:

i = 0;

while(i < 3)

{

print(i);

i=i+1;

}

output:

0 1 2

Similar questions