#include <iostream> using namespace std; int main() { int x,y; bool prime; for(x=1;x<200;x++) { for(y=x+1;y<=x+8;y++) { prime=false; if(x*y==6*(x+y)) prime=true; if(prime) cout<<x<<endl; } } return 0; }
#include <iostream> using namespace std; int main() { int x,y; bool prime; for(x=1;x<200;x++) { for(y=x+1;y<=x+8;y++) { prime=false; if(x*y==6*(x+y)) prime=true; if(prime) cout<<x<<endl; } } return 0; }
转载于:https://www.cnblogs.com/NYNU-ACM/p/4351478.html