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 read a number and check wheather it is prime or not


import java.util.*;
class prime
{
public static void main (String arg[])
{
Scanner in = new Scanner (System.in);

int a,b=2,c=1;
System.out.print ("\n\t Enter number = ");
a=in.nextInt();

do
{
if (a%b==0)
{
c=0;

}
++b;
}while (b<a/2);

if (c==1)
System.out.println ("\n\t Prime ");
else
System.out.println ("\n\t Not prime ");

}
}


Note:
          In this program, if a%b is equals to 0 it means there is a number which divides a properly, then c will assigned 0. After this process finishes, if condition will be evaluated and the result will be displayed according to the conditional expression.

No comments:

Post a Comment

Share