您的位置:首页 > Web前端

【CodeChef】 Life, the Universe, and Everything

2016-02-28 10:44 405 查看
Problem here

All submissions for this problem are available.

For help on this problem, please check out our tutorial Input and Output (I/O)

Problem

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

Solution

#include <iostream>

using namespace std;

int main() {

int n;

while(cin >> n){

if(n == 42){

break;

}

cout << n << endl;

}

return 0;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  CodeChef