zoukankan      html  css  js  c++  java
  • 数学概念——J

    J - 数论,质因数分解
    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u
    Submit Status

    Description

    Tomorrow is contest day, Are you all ready? 
    We have been training for 45 days, and all guys must be tired.But , you are so lucky comparing with many excellent boys who have no chance to attend the Province-Final. 

    Now, your task is relaxing yourself and making the last practice. I guess that at least there are 2 problems which are easier than this problem. 
    what does this problem describe? 
    Give you a positive integer, please split it to some prime numbers, and you can got it through sample input and sample output. 
     

    Input

    Input file contains multiple test case, each case consists of a positive integer n(1<n<65536), one per line. a negative terminates the input, and it should not to be processed.
     

    Output

    For each test case you should output its factor as sample output (prime factor must come forth ascending ), there is a blank line between outputs.
     

    Sample Input

    60
    12
    -1
     

    Sample Output

    Case 1. 2 2 3 1 5 1
    Case 2. 2 2 3 1

    Hint

     60=2^2*3^1*5^1 

    解题思路:
    这个题目很简单,但是要注意一个陷井,就是输入一个数的时候,它的结束条件是负数,一定要注意
    程序代码:
    #include <cstdio>
    #include <cstring>
    using namespace std;
    int b[66550];
    int n;
    void p( )
    {
        int m=n;
        while(1)
        {
            for(int i=2;i<=n;i++ )
            if(m%i==0)
            {
                b[i]++;
                m/=i;
                break;
            }
            if(m==1)
                break;
        }
    
    }
    int main()
    {
        int Case=0;
        while(scanf("%d",&n)==1&&n>0)
        {
            if(Case>0) printf("
    ");
    
            memset(b,0,sizeof(b));
            p();
            printf("Case %d.
    ",++Case);
            for(int i=2;i<=n;i++)
            if(b[i]!=0)
                printf("%d %d ",i,b[i]);
            printf("
    ");
        }
    }
    View Code


    版权声明:此代码归属博主, 请务侵权!
  • 相关阅读:
    setTimeout中0毫秒延时
    javascript中call和apply方法
    javascript闭包
    apns 服务
    新的开始,新的起点
    心情笔记
    如何解决控件附件上传时超大附件无法上传的问题
    BPM实例分享——日期自动计算
    BPM实例分享——金额规则大写
    分享一个程序猿在流程数据查看权限问题的总结
  • 原文地址:https://www.cnblogs.com/www-cnxcy-com/p/4750476.html
Copyright © 2011-2022 走看看