check whether a no is prime or not.
Answers were Sorted based on User's Feedback
Answer / m.shanmuga sundaram,rjnsoftwar
void main()
{
int primeNo;
int i;
bool isPrime = false;
printf("Enter a number to check prime or not\n");
scanf("%d",&primeNo);
for(i = 2; i <= primeNo / 2; i++)
{
if(primeNo % i == 0)
{
isPrime = true;
break;
}
}
if(isPrime)
printf("The number is a prime number %
d\n",primeNo);
else
printf("The number is not a prime number %
d\n",primeNo);
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / paramjeet singh
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i,c;
printf("enter any number\n");
scanf("%d",&i);
printf("you have entered=%d\n",i);
for(c=2;c<=i-1;c++)
{
if(i%c==0)
printf("this no.is not a prime number");
}
printf("this is prime number");
getch();
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rama
#include<stdio.h>
main()
{
int n,i,r;
clrscr();
printf("Enter the positive integer value");
scanf("%d",&n)
i=2;
step1:
if(i<=sqrt(n))
{
r=n%i;
if(r==0)
{
printf("%d is not a prime",n);
goto end;
}
}
else
{
i++;
goto step1;
}
printf("%d is prime number",n);
end:
printf(" ");
}
| Is This Answer Correct ? | 3 Yes | 2 No |
What are c++ templates used for?
Difference between linked list and array?
What does #define mean in c++?
How do you generate a random number in c++?
How is c++ different from java?
What are the advantages of c++? Explain
Why we use #include conio h in c++?
What is name hiding in c++?
Can you declare an array without a size in c++?
What is a manipulative person?
What are vectors used for in c++?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02