ToshaBoy_55,
Розничная цена: <input type="text" id="price"><br>
Количество товара: <input type="text" id="amount"><br>
Скидка (при >10 ед. товара): <input type="text" id="discount">
<input type="button" value="Определить" id="but">
<script>
document.getElementById("but").onclick = function () {
var price = document.getElementById("price").value, amount = document.getElementById("amount").value, discount = document.getElementById("discount").value;
if (isNaN(price) || isNaN(amount)) {
return alert("вводимые данные должны быть числами");
}
if (parseInt(amount) > 10) {
return alert(amount * price - (discount ? discount : 5) / 100 * amount * price);
} else {
return alert(amount * price);
}
}
</script>
а вообще не мешало бы почитать вам
учебник