码迷,mamicode.com
首页 > 其他好文 > 详细

[SP1][Luogu]TEST : Life, the Universe, and Everything

时间:2018-02-27 23:45:19      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:return   source   std   show   log   ref   cst   c++   ever   

SP1 TEST - Life, the Universe, and Everything


SPOJ第一题。因为洛谷新开了Remote Judge想要试试水。

传送门

大概就是按题面说的啦,读到42停止即可。

#include <cstdio>
int main() {
    int a(0);
    scanf("%d", &a);
    while(a!=42) {
        printf("%d\n", a);
        scanf("%d", &a);
    }
    return 0;
}

Use Luogu Remote Judge.

[SP1][Luogu]TEST : Life, the Universe, and Everything

标签:return   source   std   show   log   ref   cst   c++   ever   

原文地址:https://www.cnblogs.com/manziqi/p/8481077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!