alright..
i have a problem on how to sort the output
my code is here:
public class Num7
{
public static void main(String[]args)
{
char[] ch;
ch=new char[20];
int i;
for(i=0;i<ch.length;i++)
System.out.print(i);
}
}
the output is simply:
012345678910111213141516171819
all i want to do is to print first 19,18 and so on.
what should i modify?