java

Write a program to print multiplication table of 10 in reverse order in JAVA ( #JAVA )

Write a program to print multiplication table of 10 in reverse order in JAVA ( #JAVA )

java

Question 4 :
Write a program to print multiplication table of 10 in reverse order.

package com.company;
import java.util.Scanner;
public class Reverse
{
    public static void main (String args[])
    {
        int i;
        for ( i=10 ; i>=1 ; i-- )
        {
            System.out.println(10 + "*" + i + "=" + i*10);
        }

    }       // end of main
}       // end of class

Thanks Dosto for Reading this blog.

I think you all are definitely thinking of being connected with me.

Are you??
Yaa I know no-one is here but then also I provide my all social media links of my Digital Creation Tech DCode and my personal handles.
πŸ§‘β€πŸ’»πŸ§‘β€πŸ’» Social Media Links of Tech DCode :

πŸ§‘β€πŸ’»πŸ§‘β€πŸ’» Social Media Links of SHIVAM SINGH (OWNER) :
πŸ‘‰πŸ» Instagram : https://www.instagram.com/virtualshivamin/
πŸ‘‰πŸ» Facebook Page : https://www.facebook.com/virtualshivamin/
πŸ‘‰πŸ» Twitter : https://twitter.com/virtualshivamin/
πŸ‘‰πŸ» Personal Linktree : https://linktr.ee/virtualshivamin

🀟🀘 Check Best Offers/Deals and Discount on Amazon :
πŸ‘‰ Amazon : https://amzn.to/3tLt2FN
πŸ‘‰ Bestsellers : https://amzn.to/31boSuB
πŸ‘‰ New Realeases : https://amzn.to/3rdru5U
πŸ‘‰ Movers and Shakers : https://amzn.to/3lFu5nY
πŸ‘‰ Computer and accessories : https://amzn.to/3lERTbJ
πŸ‘‰ Electronics : https://amzn.to/3sqHW4l
πŸ‘‰ Softwares : https://amzn.to/3ccwAee

 

Leave a Reply

Your email address will not be published. Required fields are marked *