Find the output
int a;
for (a=1; a<5; a++)
{
System.out.print(a)
}
Answers
Answered by
1
Explanation:
This will display the result as follows :
It will display the number 4 times.
Similar questions