Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
89973 sh25_guwz 质因数分解 C++ 通过 0 MS 248 KB 247 2026-06-05 15:03:31

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int temp; for(int a=2;a<n;a++){ if(n%a==0){ temp=n/a; break; } else ; } cout<<temp; }


测评信息: