Beware the spacing!
title/first name may be an empty string
Search found 3 matches
- Fri Aug 11, 2006 5:13 pm
- Forum: Volume 4 (400-499)
- Topic: 450 - Little Black Book
- Replies: 57
- Views: 12367
- Wed Aug 09, 2006 3:52 pm
- Forum: Volume 4 (400-499)
- Topic: 405 - Message Routing
- Replies: 1
- Views: 2283
405 - Message Routing
Can anyone with AC program run the following input for me please? Thanks
5
NAULINS 3
HOUSTON US SHIP * UHDOWNTOWN
NAULINS US SHIP * UNO
DALLAS US AIR UT *
HOUSTON 4
HOUSTON US * UH UHDT
SANANTONIO US BUS UT UTSA
DALLAS US AIR UT *
NAULINS US SHIP * UNO
DALLAS 7
DALLAS US * UT UTD
DALLAS US * UT UTA ...
5
NAULINS 3
HOUSTON US SHIP * UHDOWNTOWN
NAULINS US SHIP * UNO
DALLAS US AIR UT *
HOUSTON 4
HOUSTON US * UH UHDT
SANANTONIO US BUS UT UTSA
DALLAS US AIR UT *
NAULINS US SHIP * UNO
DALLAS 7
DALLAS US * UT UTD
DALLAS US * UT UTA ...
- Sat Jul 15, 2006 8:25 pm
- Forum: Volume 100 (10000-10099)
- Topic: 10062 - Tell me the frequencies!
- Replies: 235
- Views: 70058
Re: 10062, Tell me the frequencies, PE, please help
I got P.E. when my code is like
while (gets(str))
{
length = strlen(str);
if (length == 0) continue;
if (first == 1)
first = 0;
else
printf("\n");
.........
}
I got accepted without P.E. when I changed my code to
while (gets(str))
{
if (first == 1)
first = 0;
else
printf("\n ...
while (gets(str))
{
length = strlen(str);
if (length == 0) continue;
if (first == 1)
first = 0;
else
printf("\n");
.........
}
I got accepted without P.E. when I changed my code to
while (gets(str))
{
if (first == 1)
first = 0;
else
printf("\n ...