Programming Challenges
+10
naru2nin
cebuanoshotshot41
rj_d'third
i am furfur
C©++Java™
alphahydrae
iSCREAM
diannee
Steven
pbwuzherr
14 posters
Page 1 of 3
Page 1 of 3 • 1, 2, 3
Programming Challenges
www.programming-challenges.com
Anyone want to challenge their programming skills,.?
or maybe practice,.?
This may be of interest to you.
Each page concentrates on a different topic.
ProbLems on each page are arranged fr0m easiest to most difficult,..
Well,
at least somthing like that,..
Good luck
and
HAPPY HACKING,.!
P.S.
You might wanna join the
programming cLub thingy too,..
Anyone want to challenge their programming skills,.?
or maybe practice,.?
This may be of interest to you.
Each page concentrates on a different topic.
ProbLems on each page are arranged fr0m easiest to most difficult,..
Well,
at least somthing like that,..
Good luck
and
HAPPY HACKING,.!
P.S.
You might wanna join the
programming cLub thingy too,..
pbwuzherr- Debugger
- Number of posts : 139
Registration date : 2008-11-13
Re: Programming Challenges
I want to join that programming club!! ^_^a
btaw, wala lagi advertisement / applications thread about sa programming club?
btaw, wala lagi advertisement / applications thread about sa programming club?
Steven- Apprentice
- Number of posts : 39
Location : Brgy. Guadalupe, Cebu City
Registration date : 2008-11-13
Re: Programming Challenges
programming is quite hard.
and if i try that link
above.
i might throw my pc on the road
because of difficulty.
but it's nice if we try.
ill try that one.
SOON. :p
Re: Programming Challenges
i find programming hard too
flowchart palang daan. tsktsk.
flowchart palang daan. tsktsk.
iSCREAM- System Analyst
- Number of posts : 659
Location : 0923640966*
Registration date : 2009-07-07
Re: Programming Challenges
Steven wrote:I want to join that programming club!! ^_^a
btaw, wala lagi advertisement / applications thread about sa programming club?
It's by invitation,..
...remember,.?
yinyang and centerisland wrote:
programming is hard
Welcome to the
Department of Mathematics and Computer Science.
pbwuzherr- Debugger
- Number of posts : 139
Registration date : 2008-11-13
Re: Programming Challenges
AJA! haha
pero STEVEN, pareha ta ug idol dah.. si Yuri and Yoona..
gee gee gee gee baby baby baby! nyahaha
pero STEVEN, pareha ta ug idol dah.. si Yuri and Yoona..
gee gee gee gee baby baby baby! nyahaha
alphahydrae- Programmer
- Number of posts : 297
Registration date : 2009-06-25
Re: Programming Challenges
waa. i hope so! ((:
iSCREAM- System Analyst
- Number of posts : 659
Location : 0923640966*
Registration date : 2009-07-07
Re: Programming Challenges
Whew. Lisud gyud ang programming basta dli mag study ana..
C©++Java™- Debugger
- Number of posts : 96
Location : Underground Rooftop Of Your Basement
Registration date : 2009-06-18
Re: Programming Challenges
waaa. patay jud ku ((:
dli rba ku nhan magstudy. haha.
dli rba ku nhan magstudy. haha.
iSCREAM- System Analyst
- Number of posts : 659
Location : 0923640966*
Registration date : 2009-07-07
Re: Programming Challenges
file reading and file output programs?
i am furfur- Oh My Furfur Gosh
- Number of posts : 319
Location : Beyond borders, Within worlds
Registration date : 2008-11-12
Re: Programming Challenges
haha. sa term palang daan lisud na.
C©++Java™- Debugger
- Number of posts : 96
Location : Underground Rooftop Of Your Basement
Registration date : 2009-06-18
Re: Programming Challenges
Jhun Luis wrote:haha. sa term palang daan lisud na.
not really hahaha
the problems are not that clearly stated
and the methods to input and output are not specified...
i am furfur- Oh My Furfur Gosh
- Number of posts : 319
Location : Beyond borders, Within worlds
Registration date : 2008-11-12
Re: Programming Challenges
pbwuzherr wrote:
It's by invitation,..
...remember,.?
kinsa ga invite? uu, pero how come wala man pud gi advertise?sila ra angeli mu himo ana? hehe.
alphahydrae wrote:
pero STEVEN, pareha ta ug idol dah.. si Yuri and Yoona.. Smile
gee gee gee gee baby baby baby! nyahaha
muhahah. chix kau sa?? kung maka kita palang ko nila in person, nah, mu faint cguro ko.nyahaha.
welcome2 to datalogics^_^a
Steven- Apprentice
- Number of posts : 39
Location : Brgy. Guadalupe, Cebu City
Registration date : 2008-11-13
Re: Programming Challenges
Steven wrote:pbwuzherr wrote:
It's by invitation,..
...remember,.?
kinsa ga invite? uu, pero how come wala man pud gi advertise?sila ra angeli mu himo ana? hehe.alphahydrae wrote:
pero STEVEN, pareha ta ug idol dah.. si Yuri and Yoona.. Smile
gee gee gee gee baby baby baby! nyahaha
muhahah. chix kau sa?? kung maka kita palang ko nila in person, nah, mu faint cguro ko.nyahaha.
welcome2 to datalogics^_^a
its invitation via faculty steven...
i am furfur- Oh My Furfur Gosh
- Number of posts : 319
Location : Beyond borders, Within worlds
Registration date : 2008-11-12
Re: Programming Challenges
Some (or most) of those problems are taken from programming contests,..
That would explain why they are telling you to get it from a file.
But those functions aren't allowed by the judge
(due to the possibility of cracking the system),
so all inputs and outputs are taken from the standard input/output,..
Just do a little research on their input styLes (as I did)
and it will all make sense,..
Input Parsing is one of the difficult parts of these problems,..
And oh,
if the number of test cases will not be supplied,
you'll have to make an infinite loop,..
It looks something like:
..Peace out..
That would explain why they are telling you to get it from a file.
But those functions aren't allowed by the judge
(due to the possibility of cracking the system),
so all inputs and outputs are taken from the standard input/output,..
Just do a little research on their input styLes (as I did)
and it will all make sense,..
Input Parsing is one of the difficult parts of these problems,..
And oh,
if the number of test cases will not be supplied,
you'll have to make an infinite loop,..
It looks something like:
- Code:
while( scanf("%d",&lem ) )
{
if( lem<0 )
printf("Negative");
else
printf("Not Negative");
}
..Peace out..
pbwuzherr- Debugger
- Number of posts : 139
Registration date : 2008-11-13
Re: Programming Challenges
pbwuzherr wrote:Some (or most) of those problems are taken from programming contests,..
That would explain why they are telling you to get it from a file.
But those functions aren't allowed by the judge
(due to the possibility of cracking the system),
so all inputs and outputs are taken from the standard input/output,..
Just do a little research on their input styLes (as I did)
and it will all make sense,..
Input Parsing is one of the difficult parts of these problems,..
And oh,
if the number of test cases will not be supplied,
you'll have to make an infinite loop,..
It looks something like:
- Code:
while( scanf("%d",&lem ) )
{
if( lem<0 )
printf("Negative");
else
printf("Not Negative");
}
..Peace out..
what functions?
P.S. infinite loop is while(1);
i am furfur- Oh My Furfur Gosh
- Number of posts : 319
Location : Beyond borders, Within worlds
Registration date : 2008-11-12
Re: Programming Challenges
^waa. i can't relate.
wla pjud mi kastart sa programming dohh D:
wla pjud mi kastart sa programming dohh D:
iSCREAM- System Analyst
- Number of posts : 659
Location : 0923640966*
Registration date : 2009-07-07
Re: Programming Challenges
i am furfur wrote:
what functions?
Functions like fopen() and fprintf() are a big no-no,..
scanf() for input
and
printf() for output
are all you'll ever need,..
i am furfur wrote:
P.S. infinite loop is while(1);
ooooppsss,..
I take that back,..
Infinite loops will give you Time Limit Exceeded,..
hmmm,..
looks like you got good potential,..
- Code:
while( scanf("%d",&lem) )
printf("%s",lem<0?"Negative":"Not Negative");
just keep scanning and processing until there are no more inputs,..
That's okay,...^waa. i can't relate.
wla pjud mi kastart sa programming dohh D:
But after 110 (w/c i assume you are taking right now),
you SHOULD be abLe to answer the first problem of the first page,..
Steven wrote:uu,
LL,.?
pbwuzherr- Debugger
- Number of posts : 139
Registration date : 2008-11-13
Re: Programming Challenges
Buang man ka lem. Hahaha.
How does d upload thing work?
Zzz printf n scanf wont help us in d actual competitions...
How does d upload thing work?
Zzz printf n scanf wont help us in d actual competitions...
i am furfur- Oh My Furfur Gosh
- Number of posts : 319
Location : Beyond borders, Within worlds
Registration date : 2008-11-12
Re: Programming Challenges
@lem: unsay LL ? "uu" means oo, or yes. hehe.
Steven- Apprentice
- Number of posts : 39
Location : Brgy. Guadalupe, Cebu City
Registration date : 2008-11-13
Re: Programming Challenges
i really can't relate
ooh well. kay salig bright man daw si steven
ara nlng mi fatudlo nimu kuya hihihi
ge lang mu shift rman ku mwagtang raning kalisud nako
ooh well. kay salig bright man daw si steven
ara nlng mi fatudlo nimu kuya hihihi
ge lang mu shift rman ku mwagtang raning kalisud nako
Re: Programming Challenges
i wanna learn computer programming...but the flowcharts makes me dizzy
rj_d'third- Newbie
- Number of posts : 24
Location : Lapu-Lapu City
Registration date : 2009-07-10
Re: Programming Challenges
@dianne: ngeh. kinsa man ni ingon bright ko ba??? @_@a wew... ok ra pud mangutana mo, wala lng mi sala if sayup among gi tudlo. nyahah. (hugas kamot.)
ayaw shift oy.. its still the 4th(or 5th?) week of school. wla pagani mu ka testing sa ka interesting and magical world of programming. usik au inyu oras shift2 mu ug course. ma biyaan nya mo sa inyu ka batch, sayang kaau ^_^a kaya lagi na ninyu. basa lng ug libro. (learn to) love the subject. study with interest and enthusiasm lng jud nyahaha
ayaw shift oy.. its still the 4th(or 5th?) week of school. wla pagani mu ka testing sa ka interesting and magical world of programming. usik au inyu oras shift2 mu ug course. ma biyaan nya mo sa inyu ka batch, sayang kaau ^_^a kaya lagi na ninyu. basa lng ug libro. (learn to) love the subject. study with interest and enthusiasm lng jud nyahaha
Steven- Apprentice
- Number of posts : 39
Location : Brgy. Guadalupe, Cebu City
Registration date : 2008-11-13
Re: Programming Challenges
gnhan ko mo apil sa programming club da
nyahaha
nyahaha
cebuanoshotshot41- Software Specialist
- Number of posts : 1126
Location : itech~
Registration date : 2009-06-28
Page 1 of 3 • 1, 2, 3
Page 1 of 3
Permissions in this forum:
You cannot reply to topics in this forum