Computer Science, asked by sunissuni1989, 4 months ago

Write the output with justification.

int y=4;
do
{
Sopln(y+ " ");
y++;
}
while(y<a);

Urgent ​

Answers

Answered by kingkha
0

Answer:

Write the output with justification.

int y=4;

do

{

Sopln(y+ " ");

y++;

}

while(y<a);

Urgent

Answered by harshans164
0

first thing u might a error saying that var a is not declared.

in case if its declared,it will be zero(according to the question).

So it will print once.

O/P:

y4

Similar questions