Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
38985 | yuanhaoxiang | 判断一个数是否为质数 | C++ | 编译错误 | 0 MS | 0 KB | 672 | 2024-01-29 15:33:08 |
#include <iostream> using namespace std; class QualityFactor { private: int n; public: void QFContract(long a) { n = 0; while(a>1) { for(int i=2;i<=a;i++) { if(a%i==0) { a = a/i; cout << i << " "; break; } } } cout << endl; } }; int main(int argc, char* argv[]) { QualityFactor QF; long number; cout << "输入要解的合数" << endl; cin>>number; QF.QFContract(number); system("pause"); return 0;