You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
JSbasic/Bonus task for HW#1.html

17 lines
834 B
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bonus task</title>
</head>
<body>
<script type="text/javascript">
// Ввести поочереди два числа с помощью prompt вывести с помощью alert их сумму, разницу и произведение.
// Основная цель задачи реализовать это с минимальным количеством строк исходного кода Вашего решения. Принимая во внимание то что ; счиатется концом строки.
// Решение
var x = Number(prompt("Enter x:")), y = Number(prompt("Enter y:"));
alert("summ " + (x + y) + "; diff " + (x - y) + "; mul " + (x * y));
</script>
</body>
</html>