24 lines
863 B
HTML
24 lines
863 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Умножение матриц</title>
|
|
</head>
|
|
<body>
|
|
<h1>Умножение матриц</h1>
|
|
<form action="/multiply" method="post">
|
|
<label for="matrix_a">Размер матриц:</label>
|
|
<input type="text" name="matrix_a" required><br>
|
|
|
|
<label for="operation_type">Способ умножения:</label>
|
|
<select name="operation_type">
|
|
<option value="sequential">Последовательно</option>
|
|
<option value="parallel">Параллельно</option>
|
|
</select><br>
|
|
|
|
<button type="submit">Умножение матриц</button>
|
|
</form>
|
|
</body>
|
|
</html> |