Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//////////////////////////////// hàm kiểm tra số nguyên tố
bool ngto(int value)
{
int temp;
int i;
if(value==2 || value==3)
return true;
if(value<=1)
return false;
temp=(int)sqrt(value);
for(i=2;i<=temp;i++)
{
if(value%i==0)
return false;
}
return true;
}
//////////////////////////////////////////////
main()
{
int in;
int dem_ngto;
dem_ngto=0;
for(in=1;in<n;in++)
{
if(ngto(a[i]))
dem_ngto++;
}
if(dem_ngto==n)
cout<<"Mang toan nguyen to. ";
else
cout<<"Ko toan nguyen to. ";
}
//////////////////////////////////////////////////////////
int i;
for(i=0;i<n;i++)
{
if(a[i]%2!=0)
{ return 0;
break; }
}
if (i==n)
return 1;
// return 1 la toàn chẵn
int i;
temp=a[0];
for (i=1;i<n;i++)
{
if(a[i]!=a[i-1]+1)
{return 0;
break; }
}
if (i==n)
return 1;