zoukankan      html  css  js  c++  java
  • D

    Write a program to read in a list of integers and determine whether or not each number is prime. A number, n, is prime if its only divisors are 1 and n. For this problem, the numbers 1 and 2 are not considered primes. 

    Each input line contains a single integer. The list of integers is terminated with a number<= 0. You may assume that the input contains at most 250 numbers and each number is less than or equal to 16000. 

    The output should consists of one line for every number, where each line first lists the problem number, followed by a colon and space, followed by "yes" or "no". 

    Sample Input

    1
    2
    3
    4
    5
    17
    0

    Sample Output

    1: no
    2: no
    3: yes
    4: no
    5: yes
    6: yes

    欧拉筛做的开始一直wa。发现bool数组小了。

    #include <iostream>
    #include <bits/stdc++.h>
    using namespace std;
    bool vis[20001]={false};
    int susu[6000],x;
    void oula(int n)
    {
        for(int i=2;i<=n;i++)
        {
            if(!vis[i]) susu[x++]=i;
            for(int j=0;j<x;j++)
            {
                if(i*susu[j]>n) break;
                vis[i*susu[j]]=true;
                if(i%susu[j]==0) break;
            }
        }
    }
    int main()
    {
        oula(20000);
        int cnt=0,n;
        while(1)
        {
            cnt++;
            scanf("%d",&n);
            if(n<=0) break;
            int flag=0;
            if(n==1||n==2)
            {
                printf("%d: no
    ",cnt);
                continue;
            }
            else
            {
                for(int i=0;i<x;i++)
                {
                    if(susu[i]==n)
                    {
                        printf("%d: yes
    ",cnt);
                        flag=1;
                        break;
                    }
                    if(susu[i]>n) break;
                }
            }
            if(flag==0) printf("%d: no
    ",cnt);
        }
        return 0;
    }
    
  • 相关阅读:
    简单的嵌套循环
    七、 二进制位运算
    六、字符串格式化--------列表常用操作
    JavaScript取消默认控件并添加新控件(DOM编程艺术第11章)
    JavaScript 字符串拼接 & setInterval()实现简单动画
    伪站创建代码-山东理工
    CSS常用样式
    CSS基础知识
    HTML5其他标签应用
    HTML表单的应用
  • 原文地址:https://www.cnblogs.com/skyleafcoder/p/12319564.html
Copyright © 2011-2022 走看看