Or maybe he should learn the material and do the homework himself. Even if it's not perfect, it's better for him. On Jun 19, 2009, at 9:06 AM, ozgur teksin wrote: > I think he needs something simpler than what you wrote. If he needs > help on > these three simple questions that means he s a newbie and i think his > teacher or professor will understand that he did not write these > code. I > agree in Brian on this matter. > > On Fri, Jun 19, 2009 at 11:13 AM, Brian Etheridge < > Brian.Etheridge@xxxxxxxxxxx> wrote: > >> >> >> ...If his lecturer can understand them. >> >> I think he'd benefit from some simpler algorithms. >> >> ________________________________ >> >> From: php-objects@xxxxxxxxxxxxxxx <php-objects%40yahoogroups.com> >> [mailto: >> php-objects@xxxxxxxxxxxxxxx <php-objects%40yahoogroups.com>] >> On Behalf Of Ian McConnell >> Sent: 19 June 2009 11:10 >> To: php-objects@xxxxxxxxxxxxxxx <php-objects%40yahoogroups.com> >> Subject: Re: PHP CODES FOR THIS .. URGENTLY NEEDED :(( >> >> >> Joe Forsythe wrote: >>> Hmmm... These all seem like pretty basic programming class >>> questions... Trying to get someone to do your homework for you? >>> >>> How about you send your code for the 3 problems and we'll help you >>> debug it. >>> -- >>> Joe >>> >>> On Jun 17, 2009, at 7:06 PM, Ella Mae Luyun wrote: >>>> what is the syntax/ code to this problems: >>>> 1) 2, 4, 6, 8, 10 >>>> >>>> 2) 2006 is not a leap year >>>> 2008 is a leap year >>>> >>>> 3) if you input, age is 18 then the output should be "your a >>>> debutant" >>>> if you input, age is 17 then the output should be "your a >>>> minor" >>>> if you input, age is 25 then the output should be "your an >>>> adult" >> >> Give the guy a break. >> This should get him full marks... >> >> echo "Question 1\n"; >> for ($i = ','; substr($i, strlen($i)-1) !== '9'; $i .= >> '2'.strlen($i)) { >> echo strlen('2'.$i).substr($i, 0,1); >> } >> echo "\n"; >> >> echo "Question 2\n"; >> $date = 2006; >> function leapyear($year) { >> return chr(77+11* ((intval($year.'.9.9.9.9.9.9', 9.9) % 9) >> 2 -1)); >> } >> if (leapyear(2006) == 'n') >> print "2006 is not a leap year\n"; >> if (leapyear(2008) == 'y') >> print "2008 is a leap year\n"; >> >> echo "Question 3\n"; >> function age($age) >> { >> $a=array('debutant','minor','adult'); >> print "your an ".$a[2-intval(chr((1<<5) + $age),5)]."\n"; >> } >> >> age(18); >> age(17); >> age(25); >> >> Here's the results: >> >> Question 1 >> 2,4,6,8,10, >> Question 2 >> 2006 is not a leap year >> 2008 is a leap year >> Question 3 >> your an debutant >> your an minor >> your an adult >> >> [Non-text portions of this message have been removed] >> >> >> > > > [Non-text portions of this message have been removed] > > > > ------------------------------------ > > Are you looking for a PHP job? > Join the PHP Professionals directory Now! > http://www.phpclasses.org/jobs/ > Yahoo! Groups Links > > > -D. Israel dan@xxxxxxxx http://www.customcodebydan.com AIM: JudoDanIzz If a dozen smart, successful people who've achieved something great are all giving the same advice, take it. [Non-text portions of this message have been removed]