输入十个整数,输出其中质数

#include
#include
#include
#include
using namespace std;
int chose(int s)
{
    int i = 2;
        do {
            if (s % i == 0 && s != i || s == 1)
                return 0;
            i++;
        } while (i < s);
            return 1;
}
int main()
{
    int a[10], b, c;
    for (int i = 0; i < 10; i++)
        scanf_s("%d", &a[i]);
    for (int i = 0; i < 10; i++)
    {
        c = chose(a[i]);
        if (c == 1)printf("%-5d", a[i]);
    }
    return 0;
}

 

你可能感兴趣的:(输入十个整数,输出其中质数)