輸入十個整數,輸出其中質數

悠玄燭遠琴棋客發表於2020-04-25
#include<stdio.h>
#include<string.h>
#include<iostream>
#include<time.h>
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;
}

 

相關文章