Search This Blog

UI/UX Design | Web Development | Mobile Application Development

Whether you need UI/ UX design, web development services, or mobile app development services, Qaabil Digitals will be more than happy to help you. We work with top software developers, designers, and project managers. We tailor our services to suit your exact needs. We closely look at your company, listen to your story, and bring about the best ideas and solutions that can help you drive solid results. We don’t just produce work that works. We produce work that matters. Get a quote now Or Talk to us

Tuesday 5 July 2011

Write a program that prints all numbers from 1 to 100 which are divisible by 9 using do while loop


class numbers
{
public static void main (String arg[])
{
Scanner in = new Scanner (System.in);
int a=100;

do
{if (a%9==0)
System.out.print ("\n\t "+a);
--a;
}
while (a>0);

}
}

Note:
         This program is approximately same as that prints even or odd numbers.

1 comment:

  1. Hi there! I could have sworn I've been to this blog before but after checking through some of the post I realized it's
    new to me. Nonetheless, I'm definitely happy I found it and I'll be book-marking and checking back
    often!
    Feel free to visit my page - redirectvirusremoval911.com

    ReplyDelete

Share