+ 3
How to write 23 number.
23 different number
13 Answers
+ 14
print (23);
+ 14
for (int i = 1; i <= 23; i++)
{
cout << i << endl;
}
+ 11
var i=0;
while(i<23)
{
console.log(i);
i++;
}
it will print from 0 to 22
+ 10
use random() function instead of console.log()...
not a big deal
@edward
+ 8
oops... typo.. @edward
+ 7
42 is every answer. So print 42 first
+ 7
@lzioe
23 different which is
Random no repeat? or something?
Or just I must teach you how to write
from 0 to 23 on the paper?
+ 3
// c++
for (int i=0;i <=23;i++){
cout <<" "<<i;
}
+ 2
what language?
+ 2
ah ok. but its cause the guy was not clear. i dont know if he meant 23 random number. or 23 different numbers inputed by the user
+ 1
int x[23];
for(i=0;i<23;i++)
cin>>x[i]
cout<<"\n the 23nums is :";
for(i=0;i<23;i++)
cout<<x[i]
0
no it wont @tony. it will be an infinite loop of 23's
0
its 23 different number