Advertisement
Guest User

Untitled

a guest
Sep 8th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.34 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Resultado</title>
  4. <style type="text/css">
  5. <!--
  6. .resppar {color: #FF0000}
  7. -->
  8. </style>
  9. </head>
  10. <body>
  11. <%
  12. Dim Var_int_num
  13.  
  14. @@Var_int_num = request.querystring("int_num")
  15.  
  16. if Var_int_num mod 2 = 0 then
  17.     Response.Write "O Número é par!!!"
  18. Else
  19.     Response.Write "O Número é impar!!!"
  20. End if
  21.  
  22. %>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement