//Int counter set to 0,While counter is less than 11, The ‘++’ means to add one to counter every iteration
for(int Counter = 0;Counter<11; Counter++)
{
//Printing out the value of the counter every iteration
System.out.println(“The Counter value is currenntly: ” +Counter);
}//End of For Loop
