switch的方便用法

            int ch = getch();
            switch(ch) {
            case '0' ... '9':
                if (in_count) {
                    count = count * 10 + (ch - '0');
                } else {
                    count = ch - '0';
                    in_count = 1;
                }
                continue;

posted @ 2013-09-11 20:58  pangbangb  阅读(245)  评论(0编辑  收藏  举报