Computer Science, asked by Arneek, 5 months ago

Find the output
int a;
for (a=1; a<5; a++)
{
System.out.print(a)
}​

Answers

Answered by abhishek58163
1

Explanation:

This will display the result as follows :

It will display the number 4 times.

Similar questions