public class Looping
{
public static void main (String[] args)
{
System.out.println ("Here is my loop!");
for (int i = 10; i >= 0; i--)
{
System.out.println (i);
}
}
}
{
public static void main (String[] args)
{
System.out.println ("Here is my loop!");
for (int i = 10; i >= 0; i--)
{
System.out.println (i);
}
}
}
(0) Comments
Post a Comment