Depending on the particular game you're playing, you can score any number from 0 to the value of a bull's eye.
Main Topics
Browse All TopicsHello puzzle experts!
On a standard dart board what is the lowest number that you cannot score with two darts?
- duz
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
For those not familiar with the game of darts here is the dartboard anatomy http://www.hotshotscanada.
1-20 = one dart
21-40 = 20 + (1-20)
41-60 = 2*20 + (1-20)
61-80 = 3*20 + (1-20)
odd 81-97 = 3 * 19 + 2 * (12-20)
even 82-100 = 3 * 20 + 2 * (11-20)
(gives us up to 98 so far, + 100)
multiples of 3 from 99-120 = 3 * 20 + 3 * (13-20)
1 less than a multiple of 3 from 101-110 = 50 + 3 * (17-20)
So I agree, 103 it is then.
it is 103 this generates them all
<script>
function Sort(a, b)
{
if(1*a >1* b)
return -1
if(1*a < 1*b)
return 1
return 0
}
str=''
for (i=0;i<21;i++)
for (j=0;j<21;j++)
str+=' '+(i+j)
for (i=0;i<21;i++)
for (j=0;j<21;j++)
str+=' '+(i+2*j)
for (i=0;i<21;i++)
for (j=0;j<21;j++)
str+=' '+(i+3*j)
for (i=0;i<21;i++)
for (j=0;j<21;j++)
str+=' '+(2*i+2*j)
for (i=0;i<21;i++)
for (j=0;j<21;j++)
str+=' '+(3*i+3*j)
for (i=0;i<21;i++)
for (j=0;j<21;j++)
str+=' '+(2*i+3*j)
for (i=0;i<21;i++)
str+=' '+(50+2*i)
for (i=0;i<21;i++)
str+=' '+(50+3*i)
str=str.split(' ')
str=str.sort(Sort)
str=str.join()
str=str.replace(/(\d*,)(\1
document.write(str)
</script>
Business Accounts
Answer for Membership
by: musoPosted on 2005-01-19 at 12:49:28ID: 13086948
Negative infinity?
If you miss both times, you wont score anything!
... or have I missed the mark