" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
if(x%2==0)
{
document.write("Parzysta!");
}
else
{
document.write("Nieparzysta!");
}
var x = 10; //Liczba
if(x%2==0) {
document.write("Parzysta");
}else{
document.write("Nieparzysta");
}