function izracunaj(){
let broj = (document.getElementById('broj')).value;
let text = (document.getElementById('broj1'));
broj = parseInt(broj);
let faktorijal = 1;
let i;
if(broj === 0 ){
text.value = 1;
}
else
if(broj < 0){
text.value = 'Unesite pozitivan broj';
}
else{
for(i = 1; i <= broj; i++){
faktorijal = faktorijal * i;
}
text.value = faktorijal;
}
};
<html>
<head>
<link rel="stylesheet" href="faktorijel.css">
</head>
<body>
<h1>Faktorijal brojeva</h1>
<div>
<p>Unesi broj <input type="number" id="broj"></p>
<button onclick="izracunaj()">Izracunaj</button>
<p>Faktorijal unetog broja je <input type="text" id="broj1" value=""></p>
</div>
<script src="FaktorijelJava.js"></script>
</body>
</html>