[gcj] hello

2011-09-22 Thread your true love
google-code@googlegroups.com this is really interesting http://www2.news7idaily.com/ see you around -- You received this message because you are subscribed to the Google Groups "google-codejam" group. To post to this group, send email to google-code@googlegroups.com. To unsubscribe from this gro

Re: [gcj] hello friends may you help me

2011-09-07 Thread Suneesh Jacob
thank you friend On Wed, Sep 7, 2011 at 9:46 AM, Saif Hasan wrote: > Hi, > please refer to this link you will get everything over there > http://www.cplusplus.com/doc/tutorial/files/ > > On Tue, Sep 6, 2011 at 10:57 PM, Suneesh Jacob wrote: > >> hello friends may i know the syntax to read input

Re: [gcj] hello friends may you help me

2011-09-07 Thread hemant kumar- I NEVER BACK DOWN
freopen("filename","r",stdin); -> for taking input from file. ( r :: in read mode ) freopen("filename","w",stdout) -> for redirecting output like printf to file . ( w: in write mode ). u can also replace file name with argv[1] like freopen(argv[1],"r",stdin); basically when u give input from

Re: [gcj] hello friends may you help me

2011-09-06 Thread Ameer Ayoub
Another common technique I've seen with regards to code jam that I've used and have seen in some solutions of others is to simply use stdin/stdout and redirect the file to stdin and the stdout to a file using the terminal (using < and > respectively). Learning to use file streams is definitely impo

Re: [gcj] hello friends may you help me

2011-09-06 Thread Saif Hasan
Hi, please refer to this link you will get everything over there http://www.cplusplus.com/doc/tutorial/files/ On Tue, Sep 6, 2011 at 10:57 PM, Suneesh Jacob wrote: > hello friends may i know the syntax to read input file in C++ and to > generate output values into output file using C++ ? > > -- >

[gcj] hello friends may you help me

2011-09-06 Thread Suneesh Jacob
hello friends may i know the syntax to read input file in C++ and to generate output values into output file using C++ ? -- You received this message because you are subscribed to the Google Groups "google-codejam" group. To post to this group, send email to google-code@googlegroups.com. To unsu

Re: [gcj] Hello

2011-04-11 Thread Carlos Guia
I'm almost certain the rules say that when using multiple source files you should zip them and send the zip file. Carlos Guía On Mon, Apr 11, 2011 at 3:45 AM, Julien Dubois wrote: > Ooops little mistake here, I meant the dashboard, not the scoreboard :) > Anyway I mean the page containing the d

Re: [gcj] Hello

2011-04-11 Thread Julien Dubois
Ooops little mistake here, I meant the dashboard, not the scoreboard :) Anyway I mean the page containing the description and sample input/output for a problem. Julien 2011/4/11 Julien Dubois > Hi, > > In the scoreboard, when you click on "Solve A-small" or "Solve A-large" for > example with p

Re: [gcj] Hello

2011-04-11 Thread Julien Dubois
Hi, In the scoreboard, when you click on "Solve A-small" or "Solve A-large" for example with problem A, you will see a little form appear from which you can download the input file, upload your output file, and upload your source code. If you go to practice, you will notice that the button to uplo

Re: [gcj] Hello

2011-04-11 Thread SILVY wijaya
Hello,I want to ask how to submit source code in google code jam? Help me please, I am newbie On 10 Apr 2011 23:50, "ravi shanker" wrote: Hi, For windows platform and Unix/Linux platform too, there is common mechanism of redirection. ex:- I have Demo.exe c:> Demo < input.in > output.out Here

Re: [gcj] Hello

2011-04-10 Thread ravi shanker
Hi, For windows platform and Unix/Linux platform too, there is common mechanism of redirection. ex:- I have Demo.exe c:> Demo < input.in > output.out Here Demo will take the input from fine input.in and will redirect it output to the output.out The same way we exercise in Unix/Linux too: $ Dem

Re: [gcj] Hello

2011-04-10 Thread Ram Shanker Saha
Hi, In which plateform? Regards Ram On Sat, Apr 9, 2011 at 3:00 PM, vineel yalamarth wrote: > hI, > I ''m lookinh for some one o pair up with me for coding..Is any one > ready for this. > Please let me know. > Regards, > Vineel Yalamarthy > > On 4/9/11, vineel yalamarth wrote: > > On 4/9/11, Br

Re: [gcj] Hello

2011-04-10 Thread Carlos Guia
C:\>program < file.in > file.out Carlos Guía On Sun, Apr 10, 2011 at 6:25 AM, BOUNAIM Oussama wrote: > how to do the redirection in windows > > > On Sat, Apr 9, 2011 at 8:06 PM, ravi shanker wrote: > >> Hi Bruno, >> >> There is an easy way to handle the I/O j >> ust use "<" operator to read the

Re: [gcj] Hello

2011-04-10 Thread BOUNAIM Oussama
how to do the redirection in windows On Sat, Apr 9, 2011 at 8:06 PM, ravi shanker wrote: > Hi Bruno, > > There is an easy way to handle the I/O j > ust use "<" operator to read the value from file and ">" to write back to > file. > example: suppose my executabe name is Demo.exe > > > Demo.exe < i

Re: [gcj] Hello

2011-04-09 Thread ravi shanker
Hi Bruno, There is an easy way to handle the I/O j ust use "<" operator to read the value from file and ">" to write back to file. example: suppose my executabe name is Demo.exe > Demo.exe < input.in > output.out Now when we use cout in your program it will redirect it in the file output.out in

Re: [gcj] Hello

2011-04-09 Thread Soumyorup Dey
*hi vineel.i m ready 2 pair up wid u *$ŎǕмџόЯטּρ δεЎ On Sat, Apr 9, 2011 at 2:32 PM, Liu Cheng wrote: > in C++ style, you could use fstream > in C style, you can use stdio functions such as fopen fscanf fprintf / > freopen scanf printf > > On Sat, Apr 9, 2011 at 3:45 PM, BrunoOliveira >

Re: [gcj] Hello

2011-04-09 Thread Pedro Henrique Ribeiro de Assis
Hey Bruno, I think you must use the standard I/O. In your example, in C++, you can use functions like: "scanf, printf, ..." To make tests, compile your code and type something like this in a command prompt: ./my-program output_file No need to generate output_file when you are testing though. --

Re: [gcj] Hello

2011-04-09 Thread Liu Cheng
in C++ style, you could use fstream in C style, you can use stdio functions such as fopen fscanf fprintf / freopen scanf printf On Sat, Apr 9, 2011 at 3:45 PM, BrunoOliveira wrote: > Hello fellow programming friends, > > I am participating in GCJ for my first time "in an official way". I`m > from

Re: [gcj] Hello

2011-04-09 Thread vineel yalamarth
hI, I ''m lookinh for some one o pair up with me for coding..Is any one ready for this. Please let me know. Regards, Vineel Yalamarthy On 4/9/11, vineel yalamarth wrote: > On 4/9/11, BrunoOliveira wrote: >> Hello fellow programming friends, >> >> I am participating in GCJ for my first time "in a

Re: [gcj] Hello

2011-04-09 Thread vineel yalamarth
On 4/9/11, BrunoOliveira wrote: > Hello fellow programming friends, > > I am participating in GCJ for my first time "in an official way". I`m > from Portugal. > > I was able to come up with some of the algorithms necessary to solve > some problems, such as "Minimum Scalar Product" in Round 1A 2008

[gcj] Hello

2011-04-09 Thread BrunoOliveira
Hello fellow programming friends, I am participating in GCJ for my first time "in an official way". I`m from Portugal. I was able to come up with some of the algorithms necessary to solve some problems, such as "Minimum Scalar Product" in Round 1A 2008. However, I never got to submit a solution

Re: [gcj] hello

2010-10-11 Thread Sreeprasad Govindankutty
Considering it to be the parent of most languages, my opinion would be C On Thu, Oct 7, 2010 at 1:05 PM, justbring1...@googlemail.com < justbring1...@googlemail.com> wrote: > what do you are the best programming languages in developing of an > operating system? > > -- > You received this message

[gcj] hello

2010-10-11 Thread justbring1...@googlemail.com
what do you are the best programming languages in developing of an operating system? -- You received this message because you are subscribed to the Google Groups "google-codejam" group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email

[gcj] Hello,everyone!

2009-08-28 Thread sxb...@tom.com
Hello,everyone! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "google-codejam" group. To post to this group, send email to google-code@googlegroups.com To unsubscribe from this group, send email to google-code+uns