diff --git a/Technologie Informacyjne/main.cpp b/Technologie Informacyjne/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e53645a29faf59631573e6349eb547151d74263f --- /dev/null +++ b/Technologie Informacyjne/main.cpp @@ -0,0 +1,23 @@ +#include + +using namespace std; + +int silnia(int n) { + + int wynik = 1; + + for(int i =1;i<=n;++i) { + + wynik = wynik*i; + + } + + return wynik; + +} + + +int main() { + + +} \ No newline at end of file