从一个数对列中找出素数对用于RAS加密的C++程序
摘要:#include <iostream> #include <cmath> using namespace std; const int n = 10000; int isPrime(int n); int main() { for(int i = 2; i < n;++ i) {//产生10000个
阅读全文
posted @ 2020-04-30 12:42
posted @ 2020-04-30 12:42
posted @ 2020-04-30 12:27