table of 7|| divisible of 7 || Java Programs || Java
In this, we are going to write a  program to print 7's table in Java.

class Series3
{
    public static void main(String[] args) 
    {
        int i;
        for (i = 7; i <= 70; i += 7) 
        {
            System.out.print(i + " ");
        }
    }
}
#ENJOY CODING

Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post