Nguyên tố hàng xóm

Xem dạng PDF


Bình luận

Hãy đọc nội quy trước khi bình luận.



  • 0
    luyencode_net  đã bình luận lúc 17, Tháng 11, 2024, 19:28

    include <bits/stdc++.h>

    using namespace std; bool snt(int n) { if(n<2) return 0; for(int i=2;i<=sqrt(n);i++) if(n%i==0) return 0; return 1; } int main() { //freopen("hangxom.inp", "r", stdin); //freopen("hangxom.out", "w", stdout); int l,r,d; cin>>l>>r; for(int i=l;i<=r;i++) if(snt(i) && snt(i+2)) d++; cout << d<< endl; return 0; }