Daffodil International University

IT Help Desk => Programming Language => Programming Competition => Topic started by: Nazmul on July 13, 2009, 04:43:40 PM

Title: Programming Contest Training Site
Post by: Nazmul on July 13, 2009, 04:43:40 PM
Dear Studenets,
Please Register here for online training for programming contest: http://ace.delos.com/usacogate

Here is the solution for first problem from USACO site:

/*
ID: nazmul1
LANG: C
TASK: test
*/
# include <stdio.h>

int main()
{
   int a,b;
   freopen("test.in","r",stdin);
   freopen("test.out","w",stdout);

   scanf("%d%d",&a,&b);
   printf("%d\n",a+b);
   return 0;
}

NB: USACO training site requires input from file & output ot file. Observe the sample solution for the way of taking input from file & gives output from file. use freopen() function.
Title: Re: Programming Contest Training Site
Post by: s.islam on December 04, 2011, 04:46:12 PM
Thanks for your informative and meaningful post.