P1075 题解
Posted wangshengjun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1075 题解相关的知识,希望对你有一定的参考价值。
本题考数学
代码简单
#include<bits/stdc++.h> using namespace std; int main() { int n;cin>>n; for (int i=2;i<=n;i++) if (n%i==0){ cout<<n/i;break;} return 0; }
以上是关于P1075 题解的主要内容,如果未能解决你的问题,请参考以下文章