博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(SPOJ1)Life, the Universe, and Everything
阅读量:5150 次
发布时间:2019-06-13

本文共 641 字,大约阅读时间需要 2 分钟。

Your program is to use the brute-force approach in order tofind 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:12884299Output:1288
#include 
#include
#include
#include
int main() { int number; scanf("%d",&number); while(number != 42) { printf("%d\n",number); scanf("%d",&number); } return 0;}

 

转载于:https://www.cnblogs.com/cpoint/archive/2013/04/14/3021084.html

你可能感兴趣的文章