Computer Science, asked by jrupkumari, 20 days ago

State the output:

class bibek [2]

{

public static void main(String arg[])

{

int i;

for(i=1;i<=3; i++)

{

System.out.print(i+ " ");

}

System.out.print(i);

}

}​

Answers

Answered by saksham15073
1

Answer:

THE OUTPUT OF THIS SNIPPET WILL BE

1 2 3

MARK THIS AS BRAINLIEST

Similar questions