public class IfDemo2 {
public static void main(String[] agrs) {
int x=100; //Utilisez IF pour démontrer
if(x%2==0) {
System.out.println ("100 est un nombre pair");
System.out.println (
Chaîne b=(x%2==0 )?"100 est un nombre pair": "100 est un nombre impair" ;
System.out.println(b);
Euh-huh