53
votes
11answers
3k views
How can “while (i == i) ;” be a non-infinite loop?
I just got a question that I can't answer.
Suppose you have this loop definition in Java:
while (i == i) ;
What is the type of i and the value of i if the loop is not an infini …
2
votes
3answers
98 views
php riddle - interesting result
I have the following code:
<?php
$cups = array();
for($i=0; $i<500; $i++){
$cups[$i] = 0;
}
for($x=1; $x<500; $x++){
for($y=$x; $y<500; $y+=$x){
$cups[$ …
2
votes
6answers
770 views
Are There Any Other Programming Riddles?
Are there any other sources of programming type riddles on the internet?
I started my set of daily programming riddles, jokes, and quotes partly to help myself and my team grown i …
0
votes
4answers
245 views
C# riddle : implement interface
UPDATE :
This question is not homework. And not waterproof apparantly...
I wanted a discussion about internal representation.
Of course : the add1000 ought to add 1000.
**Pleas …
14
votes
38answers
4k views
Programming Riddle: Counting down without subtracting.
Ok, goal by example : a command-line app that does this:
Countdown.exe 7
prints 7 6 5 4 3 2 1
No form of subtracting (including use of the minus sign) or string reverse what so …
4
votes
2answers
144 views
Why does Double.NaN equal itself when wrapped in a Double instance?
From this question I learned Double.NaN is not equal to itself.
I was verifying this for myself and noticed this is not the case if you wrap Double.NaN in a Double instance. For e …
9
votes
16answers
1k views
Programming Riddle: How might you translate an Excel column name to a number?
I was recently asked in a job interview to resolve a programming puzzle that I thought it would be interesting to share. It's about translating Excel column letters to actual numbe …
-1
votes
0answers
304 views
What are some interesting programming puzzles/riddles? [closed]
Duplicates and near-duplicates:
What are the best programming puzzles you came across?
Web site for Some Good Programming Puzzles?
Where can you find fun/educational programming …
2
votes
5answers
187 views
Collection of well defined abstract programming tasks
I'm looking for a site or book or any other source of tiny programming tasks one can implement in preferred language. Would be great if examples are present too. And would be super …
2
votes
3answers
259 views
Riddle: When are three equal dates not equal
Start with three variables, all are System.DateTime.
a: 10/2/2009 2:30:00 PM
b: 10/2/2009 2:30:00 PM
c: 10/2/2009 2:30:00 PM
Compare them to each other.
a=b: True
b=c: True
c=a …
10
votes
7answers
885 views
Possible Google Riddle?
My friend was given this free google website optimizer tshirt and came to me to try and figure out what the front logo meant.
t-shirt
So, I have a couple of guesses as to what it …
1
vote
3answers
483 views
Probability riddle: 2 envelopes, switch or keep? [closed]
You are shown two envelopes and told that they both contain money, one twice as much as the other. You select one of them at random - it contains $100. Now you are given the choice …
