luyencode / comments

Server lưu trữ bình luận trên Luyện Code
https://luyencode.net
6 stars 3 forks source link

https://oj.luyencode.net/problem/FH_05_07 #218

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

Chi tiết bài tập - Luyện Code Online

https://luyencode.net/problem/FH_05_07

TrungKiena3k24 commented 3 years ago

ai ac roi cho mik xin code vs a

Tungyeudoi commented 3 years ago

Đây là lời giải của mình đã AC. Nếu bạn đã cố gắng mà chưa làm được thì có thể tham khảo lời giải của mình.

Xem code AC

#include #include #include #include using namespace std; bool palinornot(long long int n) { long long int res =0,tam =n; while (n!=0) { res = res*10 + (n%10); n/=10; } if(res==tam) return true; else return false; } bool bauocprime(long long int n){ long long int dem=0,i; for(i = 2; i <= n; i++){ if(n%i==0) dem++; while(n % i == 0){ n /= i; } } if(dem >= 3) return true; else return false; } int main() { long long int i; long long int a,b; cin >> a >>b; for(i=a;i<=b;i++) if(bauocprime(i)==true && palinornot(i)==true) cout<