Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <algorithm>
- using namespace std;
- int faktoriel(int n) {
- int proizvod = 1;
- for(int i = 1; i <= n; i++) {
- proizvod *= i;
- }
- return proizvod;
- }
- int main()
- {
- int n;
- cin >> n;
- cout << faktoriel(n) << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement