SPOJ-TEST Life, the Universe, and Everything【Ad Hoc】

Your program is to use the brute-force approach in order to find the Answer to Life, the Universe, and Everything. More precisely... rewrite small numbers from input to output. Stop processing input after reading in the number 42. All numbers at input are integers of one or two digits.

Example

Input:
1
2
88
42
99

Output:
1
2
88

Information

In case of any problems with your code, you can take a look in the forum, you'll find the answer, only for this problem, in various languages.


问题链接SPOJ-TEST Life, the Universe, and Everything

问题简述:(略)

问题分析

  大水题,读懂题意就没有问题了。

程序说明:(略)

题记:(略)

参考链接:(略)


AC的C++语言程序如下:
/* SPOJ-TEST Life, the Universe, and Everything */

#include <iostream>
#include <stdio.h>

using namespace std;

int main()
{
    int n;
    for(;;) {
        scanf("%d", &n);

        if(n == 42)
            break;
        else if(n > 99)
            continue;

        printf("%d\n", n);
    }

    return 0;
}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值