#include "stdio.h"
#include "conio.h"
main()
{
int i,x;
scanf("%d",&x);
for(i=0;i<x;i++)
{if(x%i==0)break;}
if(i>=x)printf("yse");
else printf("no");
getch();
}
加了getch();了 还是一闪而过 不现实结果 有的说把getch();改成getchar(); 试了 也不好用啊
#include "stdio.h"
#include "conio.h"
main()
{
int i,x;
scanf("%d",&x);
for(i=0;i<x;i++)
{if(x%i==0)break;}
if(i>=x)printf("yse");
else printf("no");
getch();
}
加了getch();了 还是一闪而过 不现实结果 有的说把getch();改成getchar(); 试了 也不好用啊
除数不可以是0