//判断素数 bool prime(int x) { if(x < 2) return 0; for(int i = 2; i <= x / i; i++) if(x % i == 0) return 0; return 1; }
xiao9di LV 2
使用您的 木可信奥 通用账户