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

Friday 8 April 2011

Java program to find whether the given number 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,d;
System.out.print ("\n\t Enter first number = ");
a=in.nextInt();
System.out.print ("\n\t Enter second number = ");
d=in.nextInt();
a+=d;
System.out.println ("\n\t Sum of the numbers = "+a);
while (b<=a/2)
{
if (a%b==0)
c=0;
++b;
}
if (c==0)
System.out.println ("\n\t Sum of the numbers 
is Not a prime number ");
else 
System.out.println ("\n\t Sum of the numbers 
is Prime number ");
}
}

No comments:

Post a Comment

Share