Zapisz składnie instukcji; jeżeli "a" jest parzyste to wykonaj "instrukcja 1' w przeciwnym wypadku wykonaj :"instrukcja 2" i "instrukcja 3"
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
if (a%2 == 0)
{
instrukcja1;
}
else
{
instrukcja2;
instrukcja3;
}
to sie nazywa dzielenie modulo
w tym wypadku jeśli liczba podzielona przez 2 daje zero reszty ( parzysta )