i have assignment and i really dont know how to make it.
this is about superprime numbers, we will input 5digits number from 10000 until 99999. and then the program need to tell the user whether the number input is superprime or not. can you help me with this? thank you
if(f==1&&flag==1)
printf("\nGiven number is superprime\n");
else if(flag==0)
printf("\nGiven number is not prime\n");
else if(f==0&&flag==1)
printf("\nGiven number is prime but not superprime");
else
printf("\nGiven number is not prime\n");
return;
}