Profile photo for Shubham Pandey

CPP Program to calculate factorial upto 1000!, maybe more using Super Carry method…without using big Integer.

  1. #include <iostream> 
  2. #include <vector> 
  3.  
  4. int main(){ 
  5. int n ; 
  6. std::cin >> n ; 
  7. std::vector <int> ans ; 
  8. ans.push_back(1) ; 
  9. std::vector <int> :: iterator itr ; 
  10.  
  11. for(int i = 2 ; i <= n ; i++){ 
  12. for(itr = ans.begin() ; itr != ans.end() ; itr++) 
  13. *itr *= i ; 
  14. for(int j = 0 ; j < ans.size() ; j++) 
  15. if(ans[j] >= 10){ 
  16. if(j == ans.size() - 1) 
  17. ans.push_back(0) ; 
  18. ans[j+1] = ans[j+1] + (ans[j]/10) ; 
  19. ans[j] = ans[j]%10 ; 
  20. } 
  21. } 
  22.  
  23. for(int i = ans.size() - 1 ; i > -1 ; i--) 
  24. std::cout << ans[i] ; 
  25. } 
View 5 other answers to this question
About · Careers · Privacy · Terms · Contact · Languages · Your Ad Choices · Press ·
© Quora, Inc. 2025