forked from dayanec/git-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteste.php
More file actions
23 lines (23 loc) · 754 Bytes
/
teste.php
File metadata and controls
23 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
include "operacoes.php";
$a = 6;
$b = 3;
echo "<p>A soma de $a com $b é: ", soma($a, $b),"</p>";
echo "<p>A subtração de $a por $b é: ", subtracao($a, $b),"</p>";
echo "<p>A multiplicação de $a por $b é: ", multiplicacao($a, $b),"</p>";
echo "<p>A divisão de $a por $b é: ", divisao($a, $b),"</p>";
?>
</body>
</html>