PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Pastebin launched a little side project called
HostCabi.net
, check it out ;-)
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
FunVampir
9 sec ago
Untitled
17 sec ago
Untitled
18 sec ago
Untitled
22 sec ago
Untitled
26 sec ago
Untitled
31 sec ago
Untitled
35 sec ago
Untitled
40 sec ago
multiRandomNumber1
By:
ace
on
Jan 23rd, 2010
| syntax:
None
| size: 0.19 KB | hits: 18 | expires: Never
download
|
raw
|
embed
|
report abuse
|
print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
public void printMultiRandom(int howMany)
{
int index = 0;
{
while(index < howMany)
{
System.out.println();
index++;
}
}
}
create a
new version
of this paste
RAW Paste Data
public void printMultiRandom(int howMany) { int index = 0; { while(index < howMany) { System.out.println(); index++; } } }