Java programme to print multiplication table in reverse order.

 public class nilesh {

    public static void main (String args[]){

       int n=3;

       int i;

       for (i=10;  i>0; i--){

           int m=n*i;

           System.out.printf("%d X %d =%d \n", n, i,m);}}

    }

Comments

Popular posts from this blog

How to install MinGW in 2022 | How to install c compiler for windows.| How to set path for c compiler minGW