Como obter um número aleatório
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot addition of Template:ArticleMetaData) |
m (Lpvalente -) |
||
| (2 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| + | [[Category:Java ME]][[Category:Lang-Portuguese]][[Category:Code Examples]] | ||
{{ArticleMetaData | {{ArticleMetaData | ||
|sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| Line 4: | Line 5: | ||
|devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> | |devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> | ||
|sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| − | |platform= | + | |platform= Java ME |
|devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
|dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| Line 12: | Line 13: | ||
|id= <!-- Article Id (Knowledge base articles only) --> | |id= <!-- Article Id (Knowledge base articles only) --> | ||
|language=Lang-Portuguese | |language=Lang-Portuguese | ||
| − | |translated-by= | + | |translated-by=[[User:Maiconherverton]] |
| − | |translated-from-title= | + | |translated-from-title=How to get a random number from range |
| − | |translated-from-id= | + | |translated-from-id=51213 |
|review-by=<!-- After re-review: [[User:username]] --> | |review-by=<!-- After re-review: [[User:username]] --> | ||
|review-timestamp=<!-- After re-review: YYYYMMDD --> | |review-timestamp=<!-- After re-review: YYYYMMDD --> | ||
| Line 20: | Line 21: | ||
|update-timestamp=<!-- After significant update: YYYYMMDD --> | |update-timestamp=<!-- After significant update: YYYYMMDD --> | ||
|creationdate=20090911 | |creationdate=20090911 | ||
| − | |author=[[User: | + | |author=[[User:Firt]] |
| − | }} | + | }} |
| − | |||
| − | Se você precisa obter um número aleatório entre X e Y, você deve usar algum padrão matemático usando a classe Math e alguns cálculos. | + | {{Abstract|Se você precisa obter um número aleatório entre X e Y, você deve usar algum padrão matemático usando a classe Math e alguns cálculos.}} |
Você pode usar esse método para obter rapidamente o número aleatório: | Você pode usar esse método para obter rapidamente o número aleatório: | ||
| Line 36: | Line 36: | ||
} | } | ||
</code> | </code> | ||
| + | <!-- Translation --> [[en:How to get a random number from range]] | ||
Latest revision as of 03:07, 18 March 2012
Dados do artigo
Compatibilidade
Plataforma(s): Java ME
Artigo
Tradução:
Originado de How to get a random number from range
Por maiconherverton
Última alteração feita por lpvalente
em 18 Mar 2012
Se você precisa obter um número aleatório entre X e Y, você deve usar algum padrão matemático usando a classe Math e alguns cálculos.
Você pode usar esse método para obter rapidamente o número aleatório:

