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

题解 SP1 【TEST - Life, the Universe, and Everything】

时间:2018-02-03 17:49:23      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:bre   sp1   cpp   body   its   post   思路   输出   ace   

题解 SP1 【TEST - Life, the Universe, and Everything】

这是一道SPOJ的试机题,题目简单,但是还是不像A+B problem那样简单。

解题思路:(For 像我这样的新手们的)边读入边输出,这个程序在你的电脑上可能会得到很奇怪的答案,但是这在算法竞赛中是可以的。对于42以后的甚至可以不用读入了。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int a;
    while(1){
        cin>>a;
        if(a==42)break;
        cout<<a<<endl; 
    } 
}

  

题解 SP1 【TEST - Life, the Universe, and Everything】

标签:bre   sp1   cpp   body   its   post   思路   输出   ace   

原文地址:https://www.cnblogs.com/Douglas-Zhou/p/SP1.html

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