How about :
57-33
meow......
Main Topics
Browse All TopicsToday during school I came across a couple of kids trying to figure out one of the cards of "The 24 Game". This immediately struct me as odd, because being seniors it is very childish to play the game. If you don't know how it works, the rules are:
1.) Use all numbers once and only once
2.) You can only use the four basic math functions (+ - / *)
3.) Your answer has to turn out to be 24
So as I was saying, I along with many others spent 20 minutes trying to figure it out and got no where, it has been bothering me all day. The game is designed for elementary school kids, and I'm in AP Calculus as a sophmore in high school and can't figure it out. And some of my friends were helping me and they got 1600's on the SAT's and couldn't get it. So I thought I would post it here and see if any of you could get the answer, or if it is a misprint...I wasn't sure if it was a misprint or not, because the directions of the game say that all have atleast one section.
So here are the numbers:
7
3 3
5
Have fun, don't let it keep you up at night. ;)
Mark
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.
Voice,
I just noticed your post. I ran this and then checked through the output for the right number of each number. Save it as a .htm and open in a browser. ( no programing awards here )
<script>
target=24
nums=new Array('3','3','5','7')
ops=new Array('+','-','*','/')
bl='('
br=')'
for (i=0;i<4;i++)
for (j=0;j<4;j++)
for (k=0;k<4;k++)
for (l=0;l<4;l++)
for (o1=0;o1<4;o1++)
for (o2=0;o2<4;o2++)
for (o3=0;o3<4;o3++)
{NumStr=bl+bl+nums[i]+ops[
if (eval(NumStr)==target) document.write(NumStr+'='+
}
</script>
Business Accounts
Answer for Membership
by: GwynforWebPosted on 2003-11-19 at 21:37:27ID: 9784906
(75 -3)/3
from understanding brackets are allowed and it can not be done without combing the 7and 5 to make 75 which I also believe is in the rules (I ran a short program to test)