Computer Science, asked by Anshuman280, 1 year ago

Can anybody have made a infinity loop program on java ? if yes so tell the program

Answers

Answered by shishira
0
i dont kniw sry......
Answered by AritraMondal
0
public class InfinityLoop
{
public static void main()
{
for ( int i = 1; i>0; i ++ )
{
System.out.println ("Infinity");
}
}
}
Similar questions