|  | 
|  | 
| back to board | import java.util.*;public class timusTeam
 {
 public static void main(String [] args)
 {
 int i=0;
 Scanner in=new Scanner(System.in);
 int n=in.nextInt();
 
 if(n>1000 || n<1)
 return;
 
 int arr[]=new int[n];
 for(i=0;i<n;i++)
 {
 arr[i]=in.nextInt();
 if(arr[i]>10 || arr[i]<0)
 return;
 }
 
 int a;
 int sum=0;
 
 i=0;
 while(i<n)
 {
 a=arr[i];
 for(int k=0;k<n;k++)
 if(arr[k]==a)
 {
 sum++;
 i++;
 }
 System.out.print(sum +" " +a +" ");
 sum=0;
 }
 
 }
 }
 
 im frustrated :( Help me please
 
 Edited by author 05.06.2012 16:59
 
 Edited by author 05.06.2012 18:21
 61 1 2 1 1 1
 5 1 5 1 BUILD SUCCESSFUL (total time: 6 seconds)
 
 answer ->
 2 1 1 2 3 1 BUILD SUCCESSFUL (total time: 4 seconds)
 
 
 You 're telling the amount of x number on the table, read again the problem, greetings.
 
 Edited by author 26.11.2015 05:52
 | 
 | 
|