A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© liuxiaoye 中级黑马   /  2016-2-24 22:13  /  336 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.util.ArrayList;

public class Demo2 {
//         有一个字符串是用空格分隔的一系列整数,写一个程序把其中的整数做如下重新排列打印出来:
//        奇数显示在左侧、偶数显示在右侧。比如‘2 7 8 3 22 9’显示成‘7 3 9 2 8 22’。
        public static void main(String[] args) {
                String data="2 7 8 3 22 9";
                String[] newdata = data.split(" ");
                ArrayList<Integer> list1=new ArrayList<Integer>();
                ArrayList<Integer> list2=new ArrayList<Integer>();
                for (String thisdata : newdata) {
                        Integer thisNum=Integer.parseInt(thisdata);
                        if(thisNum%2==1){
                        list1.add(thisNum);
                        }else{
                                list2.add(thisNum);
                        }
                }
                for (Integer integer : list1) {
                        System.out.print(integer+" ");
                }
                for (Integer integer : list2) {
                        System.out.print(integer+" ");
                }
        }

}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马