Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <link href="style.css" rel="stylesheef" type="text/css"/>
- </head>
- <body bgcolor="yellow">
- <script>
- function zadanie()
- {
- var a = Math.floor(Math.random()*101;)
- var b = prompt("Podaj b")
- b = parseInt(b);
- if (b > a)
- {
- document.write("b jest wieksze")
- }
- if (b < a)
- {
- document.write("a jest wieksze")
- }
- var s = b+a;
- var i = b*a;
- var k = a*a;
- if (a<0)
- {
- a= a * -1;
- }
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement