📄 tempconvert0.jsp
字号:
<!-- tempconvert0.jsp
A document that converts a Celsius temperature received
from tempconvert0.html to Fahrenheit
-->
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<title> Temperature converter </title>
</head>
<body>
<p>
<%
// Get the Celsius temperature from the form
String strCtemp = request.getParameter("ctemp");
float ftemp;
// convert the value to Fahrenheit
ftemp = 1.8f * Integer.parseInt(strCtemp) + 32.0f;
%>
<!-- Use an expression to display the value of the
Fahrenheit temperature -->
Fahrenheit temperature:
<%= ftemp %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -