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

基础训练 阶乘计算

时间:2019-01-28 01:08:35      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:++   string   cpp   href   html   计算   bre   .com   using   

阶乘计算

自己写的超时了,这里直接贴出别人的代码了

#include<iostream>
#include<string.h>
using namespace std;
int main(){
    int n,s,r=0,a[10005];
    cin>>n;
    memset(a,0,sizeof(a));
    a[0]=1;
    for(int i=1;i<=n;i++){
        for(int j=0;j<10001;j++){
            s=a[j]*i+r;
            a[j]=s%10;
            r=s/10;
        }
    }
     for(int i=10000;i>=0;i--){
        if(a[i]!=0){
            for(int j=i;j>=0;j--){
                cout<<a[j];
            }
            break;
        }
    }
    cout<<endl;
    return 0;
}

基础训练 阶乘计算

标签:++   string   cpp   href   html   计算   bre   .com   using   

原文地址:https://www.cnblogs.com/A-Little-Nut/p/10328140.html

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