fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. long long silnia(int liczba) {
  6.  
  7. if(liczba == 0) return 1;
  8. else return liczba * silnia(liczba-1);
  9.  
  10. }
  11.  
  12. int main() {
  13.  
  14. int ile;
  15. cin >> ile;
  16.  
  17. for(int i = 0; i < ile; i++) {
  18.  
  19. int liczba;
  20. cin >> liczba;
  21. cout << silnia(liczba) << endl;
  22.  
  23. }
  24.  
  25. return 0;
  26.  
  27. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty