Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
50604 逸凡 202403-GESP-一级-找因数 C++ 通过 1 MS 244 KB 160 2024-09-01 13:36:45

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; for(int i=1;i<=a;i++){ if(a%i==0){ cout<<i<<endl; } } return 0; }


测评信息: