Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
java_dzienna_15_09
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Patryk Czarnik
java_dzienna_15_09
Commits
6023d5a7
Commit
6023d5a7
authored
Sep 28, 2022
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Kalkulator2
parent
34b8f50a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
0 deletions
+75
-0
Kalkulator2.java
PC25-Serwlety/src/main/java/kalkulator/Kalkulator2.java
+75
-0
No files found.
PC25-Serwlety/src/main/java/kalkulator/Kalkulator2.java
0 → 100644
View file @
6023d5a7
package
kalkulator
;
import
java.io.IOException
;
import
java.io.PrintWriter
;
import
javax.servlet.ServletException
;
import
javax.servlet.annotation.WebServlet
;
import
javax.servlet.http.HttpServlet
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
@WebServlet
(
"/Kalkulator2"
)
public
class
Kalkulator2
extends
HttpServlet
{
private
static
final
long
serialVersionUID
=
1L
;
protected
void
doGet
(
HttpServletRequest
request
,
HttpServletResponse
response
)
throws
ServletException
,
IOException
{
response
.
setContentType
(
"text/html"
);
response
.
setCharacterEncoding
(
"utf-8"
);
PrintWriter
out
=
response
.
getWriter
();
out
.
println
(
"<!DOCTYPE html>"
);
out
.
println
(
"<html>"
);
out
.
println
(
"<head>"
);
out
.
println
(
"<title>Kalkulator serwletowy</title>"
);
out
.
println
(
"<link rel='stylesheet' type='text/css' href='styl.css'>"
);
out
.
println
(
"</head>"
);
out
.
println
(
"<body>"
);
out
.
println
(
"<h1>Kalkulator 2</h1>"
);
out
.
println
(
"<p>Wpisz liczby i wybierz działanie:</p>"
);
out
.
println
(
"<form>"
);
out
.
println
(
"<input name='liczba1' type='number'>"
);
out
.
println
(
"<select name='operacja'>"
);
out
.
println
(
"<option value='+'>+</option>"
);
out
.
println
(
"<option value='-'>-</option>"
);
out
.
println
(
"<option value='*'>*</option>"
);
out
.
println
(
"<option value='/'>/</option>"
);
out
.
println
(
"</select>"
);
out
.
println
(
"<input name='liczba2' type='number'>"
);
out
.
println
(
"<button>=</button>"
);
out
.
println
(
"</form>"
);
String
param1
=
request
.
getParameter
(
"liczba1"
);
String
param2
=
request
.
getParameter
(
"liczba2"
);
String
operacja
=
request
.
getParameter
(
"operacja"
);
if
(
param1
!=
null
&&
param2
!=
null
&&
operacja
!=
null
)
{
try
{
long
liczba1
=
Long
.
parseLong
(
param1
);
long
liczba2
=
Long
.
parseLong
(
param2
);
long
wynik
;
switch
(
operacja
)
{
case
"+"
:
wynik
=
liczba1
+
liczba2
;
break
;
case
"-"
:
wynik
=
liczba1
-
liczba2
;
break
;
case
"*"
:
wynik
=
liczba1
*
liczba2
;
break
;
case
"/"
:
wynik
=
liczba1
/
liczba2
;
break
;
default
:
throw
new
IllegalArgumentException
(
"Nieznane działanie: "
+
operacja
);
}
out
.
println
(
"<div class='wynik'>Suma: "
+
wynik
+
"</div>"
);
}
catch
(
NumberFormatException
e
)
{
out
.
println
(
"<div class='error'>Niepoprawny format liczby</div>"
);
}
catch
(
Exception
e
)
{
out
.
println
(
"<div class='error'>Błąd: "
+
e
.
getMessage
()
+
"</div>"
);
}
}
out
.
println
(
"</body>"
);
out
.
println
(
"</html>"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment