百練 / 2017電腦學科夏令營上機考試: A (素數)

來源:互聯網
上載者:User

題目來源:http://noi.openjudge.cn/ch0113/10/ 10:判決素數個數

總時間限制: 1000ms     記憶體限制: 65536kB

描述

輸入兩個整數X和Y,輸出兩者之間的素數個數(包括X和Y)。

輸入

兩個整數X和Y(1 <= X,Y <= 105)。

輸出

輸出一個整數,表示X,Y之間的素數個數(包括X和Y)。

範例輸入

1 100

範例輸出

25

-----------------------------------------------------

解題思路

1不是素數。1不是素數。1不是素數。

另外題目有坑,沒說輸入的第一個數一定要小於等於第二個數。

-----------------------------------------------------

代碼

#include<iostream>#include<utility>#include<math.h>using namespace std;bool sushu(int n){int i = 2;if (n<=1){return false;}if (n == 2 || n == 3){return true;}for (i=2; i<=((int)sqrt(n)); i++){if(n%i == 0){return false;}}return true;}int main(){int low, high, i, cnt=0;cin >> low >> high;if (low > high){swap(low, high);}for (i=low; i<=high; i++){if (sushu(i)){cnt ++;}}cout << cnt;}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.