SPOJ第一题

该博客介绍了SPOJ平台上的第一道题目,要求使用暴力方法处理输入,直到遇到数字42为止。程序需将100以下的正整数输出,当读到42时停止。博客提供了简单的解题思路和源码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一.问题的重述:

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.
//你的程序将使用穷举的方法来找到Life,the Universe , and Ecerything 的答案。准确来说,从输入重写到输出,当读入的数字为42的时候停止处理输入,所有输入的数都是100以下的正整数。

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.

二.解题方法:

     当输入42时就停止输入,并且输出之前输入的数据;题目太简单就不分析了。

源码如下:

#include "stdafx.h"
#include<iostream>
using namespace std;

int main()
{
	i
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值