Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class Test {
  2.  
  3. public static void main (String[]args){
  4.  
  5.  
  6. int[]cpoies = {22,12,13};
  7.  
  8.  
  9. for(int i=0;i<cpoies.length;i++){
  10. if(cpoies[i] < 20 ){
  11. for(int j=i;j<cpoies.length-1;j++)
  12. cpoies[j]=cpoies[j+1];
  13.  
  14. }}
  15.  
  16. System.out.println("The remained : ");
  17.  
  18. for(int i=0;i<cpoies.length-1;i++){
  19. System.out.println(cpoies[i]);
  20. }
  21.  
  22.  
  23. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement