我想打印相同的整数
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@page import="java.lang.System"%>
<html>
<head>
<title>Type Casting 1</title>
</head>
<body>
<%
int hasil = 10;
for ( int i = 0; i < 100; i++) {
if (hasil=i);
out.println (i);
}
%>
</body>
</html>
它说int在jsp中无法转换为boolean,你有更好的解决方案吗?
答案 0 :(得分:1)
在{而不是==
=
您正在做的是,您指定i
的值而不是与hasil
进行比较