码迷,mamicode.com
首页 > 其他好文 > 详细

P1075 题解

时间:2018-10-01 19:59:58      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:its   cin   include   int   out   space   ret   for   题解   

本题考数学

代码简单

#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 题解

标签:its   cin   include   int   out   space   ret   for   题解   

原文地址:https://www.cnblogs.com/wangshengjun/p/luoguP1075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!