发布网友 发布时间:1小时前
我来回答
共1个回答
热心网友 时间:2分钟前
int prime(int x){int i,n;n=1;if (x==1){ n= 0;}for(i=2;i<x;i++){if(x%i==0){ n=0;break;}}return n;}