Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Practica 6</title>
- </head>
- <body>
- <h1>Practica 6</h1>
- <?php
- $num=rand(1,100);
- if($num<=50)
- {
- echo "Tu numero es menor o igual que 50: ",$num;
- }
- else
- {
- echo "Tu numero es mayor que 50: ",$num;
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement