Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99391 | 胡晏玮 | RSA加密算法 | C++ | 通过 | 100 | 0 MS | 256 KB | 433 | 2023-08-22 16:27:45 |
#include <iostream> #include <cmath> using namespace std; bool prime(int x){ for(int i=2;i<=sqrt(x);i++){ if(x % i == 0) return false; } return x > 1; } void lenzys(int x){ if(x == 1) return; int m = 2; while(!prime(x)){ while(x % m != 0){ m++; } cout << m << '*'; x /= m; } cout << x; return; } int main(){ int a; cin >> a; cout << a << '='; lenzys(a); return 0; }