%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
if (15 % 2 == 0)
{
out.print ("15 est un nombre pair.");
}
else
{
out.print ("15 est un nombre impair.");
}
%>
<%
switch (16 % 2)
{
case 0:
out.print ("16 est un nombre pair.");
break;
default:
out.print ("16 est un nombre impair.");
break;
}
%>