[SPOJ] TEST – Life, the Universe, and Everything

原题: http://www.spoj.com/problems/TEST/


题目大意: 输出序列, 直到42


分析: 开始刷spoj. 最后一个学期也没TA了, 最后一个学期, 各种老师不给Master TA/RA. 烦恼 烦恼.

public void solve(int testNumber, InputReader in, OutputWriter out) {
        int n = in.readInt();
        while (n != 42){
            out.printLine(n);
            n = in.readInt();
        }
    }