c语言,求出1到30之间所有素数

日期:2021-07-08 20:41:50 人气:1

c语言,求出1到30之间所有素数

#include <stdio.h>
// 是否是素数 
bool prime(int x)
{
    if(x < 2)
    {
        r
    A+
热门评论