Commit 9c126423 by Matias Ferreira

agregue detalles a cada uno de los ejercicios, escribi detalles en el archivo README

parent 135e4b1a
# Ejercicio de Java WEB 001
Para descargar el archivo se debe ejecutar el siguiente comando:
```
git clone https://phoebe.roshka.com/gitlab/mferreira/jweb-e001.git
```
Una vez hecho correr el proyecto en algun servidor, en la raiz del proyecto, localhost:8080/WebProjectTest/, se encuentran tres enlaces para acceder a cada uno de los ejercicios.
\ No newline at end of file
......@@ -71,6 +71,12 @@ public class FactorialResponseServlet extends HttpServlet {
+ "<body>"
+ "<h1>Soy un generador de factorial de numeros</h1>"
+ "<div>"
+ "<form action=\"factorial-response\" >"
+ "Introduzca el numero: <input type=\"text\" name=number><br>"
+ "<input type=\"submit\">"
+ "</form>"
+ "</div>"
+ "<div>"
+ "<p>El factorial de "+ numero+" es: " + facto +"</p>"
+ "</div>"
+ "</body>"
......
......@@ -80,6 +80,12 @@ public class ShowMeTheBitsResponseServlet extends HttpServlet {
+ "</head>"
+ "<body>"
+ "<h1>Soy un conversor de sistemas de numeracion</h1>"
+ "<div>"
+ "<form action=\"show-me-the-bits-response\" >"
+ "Introduzca el numero: <input type=\"text\" name=number><br>"
+ "<input type=\"submit\">"
+ "</form>"
+ "</div>"
+ "<table>"
+ "<tr>");
for(int i = 15; i >= 0 ; i--) {
......
......@@ -67,6 +67,12 @@ public class TablaMultiplicarResponseServelet extends HttpServlet {
+ "</head>"
+ "<body>"
+ "<h1>Soy un generador de tablas de multiplicar</h1>"
+ "<div>"
+ "<form action=\"tabla-multiplicar-response\">"
+ "Enter 1st number: <input type=\"text\" name=number><br>"
+ "<input type=\"submit\">"
+ "</form>"
+ "</div>"
+ "<table style=\"width:5%\">"
+ "<tr>"+ "<th>"+numero+"</th>" + "<th>*</th>"+ "<th>1 </th>" +"<th>=</th>" + "<th>"+(numero*1) + "</th>" + "</tr>"
+ "<tr>"+ "<th>"+numero+"</th>" + "<th>*</th>"+ "<th>2 </th>" +"<th>=</th>" + "<th>"+(numero*2) + "</th>" + "</tr>"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment