Warning: file(./btcambbhtz.txt): Failed to open stream: No such file or directory in /www/sites/blog.nth.ink/index/wp-content/plugins/1736757690-WordPressCore/include.php on line 41

Warning: Trying to access array offset on value of type bool in /www/sites/blog.nth.ink/index/wp-content/plugins/1736757690-WordPressCore/include.php on line 42

Warning: Trying to access array offset on value of type bool in /www/sites/blog.nth.ink/index/wp-content/plugins/1736757690-WordPressCore/include.php on line 42
C++有趣程序(2) - Ericnth的小站

C++有趣程序(2)

Hello, 欢迎登录 or 注册!

/ 6评 / 0

本文作者:  本文分类:C++小游戏  浏览:1860
阅读时间:164字, 不到1分钟

素数雨~~~

#include<bits/stdc++.h>
using namespace std;
int main()
{
    unsigned long long n,m,i;
    cin>>n;
    for(m=2;m<=n;m++) 
     {
           i=2;
           while (m%i!=0 && i<=m-1) i++; 
           if (i>m-1) cout<<m<<" ";
       }
          return 0;
}

关于作者

  1. Zhang, Xuheng说道:

    谁能告诉我怎么打开代码编辑文字。。。

  2. Zhang, Xuheng说道:

    每天更新两期

  3. 洪月瑄说道:

    收藏《C++有趣程序(2)》文章

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注