+ 1
Variable
How to make a variable between 100 and 101 to alert you that you have 101 points? Sorry for my English but i'm from Poland
5 Answers
+ 5
It depends on particular programming language, but I think if-clause could do it.
if (points > 100)
alert();
A możesz też zapytaÄ polski, trochÄ rozumiem :)
+ 3
To co napisaÅem zadziaÅa gdy masz wiÄcej niż 100 (to jest 101, 102, 103 i tak dalej).
if (points == 100)
alert();
Alert zadziaÅa tylko gdy masz 100.
if (points == 100 || points == 101)
alert();
Alert zadziaÅa gdy masz 100 lub 101. "||" znaczy w Jave OR (lub).
+ 3
Nie ma limit.
Ale dobry programista nie napisze dÅugiego kodu, użyje czegoÅ mÄ
drzejszego. Na przykÅad > i < lub jakiÅ cykl.
+ 1
Ok dziÄki ale chcÄ Å¼eby alert zadziaÅaÅ tylko gdy mam 100 lub 101 punktĆ³w.
Bo to co napisaÅeÅ to jest
gdy masz mniej punktĆ³w niż 100 to alert()
+ 1
aha a ile mogÄ daÄ tych "||"?
Jest jakiÅ limit?