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

华为OJ-质数因子

时间:2018-01-30 12:15:49      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:mes   iostream   str   class   blog   stream   out   result   name   

 1 #include <iostream>
 2 using namespace std;
 3 
 4  void getResult(long int input)
 5 {
 6     for (int i=2;i<=input;i++)
 7     {
 8         while((0==input%i)&&input!=0)
 9         {
10             cout<<i<<" ";
11             input=input/i;
12         }
13     }
14     
15 }
16 
17  int main()
18  {
19      int a;
20      cin>>a;
21      getResult(a);
22      return 0;
23  }

 

华为OJ-质数因子

标签:mes   iostream   str   class   blog   stream   out   result   name   

原文地址:https://www.cnblogs.com/zaijiefangbeidawang/p/8380054.html

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