Submit | All submissions | Best solutions | Back to list |
TEST - Life, the Universe, and Everything |
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.
Added by: | mima |
Date: | 2004-05-01 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |
Resource: | Douglas Adams, The Hitchhiker's Guide to the Galaxy |
hide comments
|
||||||||||||||
2022-10-07 19:55:05
you idiots everyone are thinking it as complex problem giving some complex solutions not to do all these stupids just crete int x and input it until while x!= 42 that it until loop terminated cout n |
||||||||||||||
2022-09-14 15:48:07
try until you die trust me it will improve your thinking,,, its all about how many ways that you tried to succeed ,, I know how will you code correctly,, it took me 2 hours. so why you wanna see the ans, try your best |
||||||||||||||
2022-08-17 10:43:19
please suggest me is this website is good for practice != |
||||||||||||||
2022-08-07 04:12:02
Please anyone can tell me which one is javascript compiler--> javascript (rhino 1.7.9) Or javascript(SMonkey 60.2.3) |
||||||||||||||
2022-07-19 22:01:05
In java Make array store number and make loop till specific value |
||||||||||||||
2022-07-19 14:09:36
Accept it till while loop is true and break the loop the moment you get the value of x=42, you are done. |
||||||||||||||
2022-07-18 05:43:56
wtf is this xd |
||||||||||||||
2022-07-10 11:21:00
i have a solution in O(n log n) but i am getting tle pls help i am using html |
||||||||||||||
2022-06-27 04:28:07
Wth what I/O is it? |
||||||||||||||
2022-04-19 15:26:46
Guys it's literally as easy it appears to be. Just accept input numbers until you get 42, and then print all the numbers in the exact same order you received it in the input. In other words, store everything in a vector / array until 42, and then with a for loop just print every element from the array / list / vector |