Search found 1 match

by stanleymao
Tue Jun 19, 2007 5:57 am
Forum: Volume 4 (400-499)
Topic: 492 - Pig-Latin
Replies: 213
Views: 49688

492 WA

Could somebody give me some test data
or tell me the error in the code?
I cannot find. Thanks a lot.

#include<stdio.h>

int main()
{
char input[10000];
int i, j;
int temp;

while( fgets(input, 10000, stdin) )
{
i=0;
temp=0;

while(input !='\0')
{
if( ( input >=65 && input <=90 ...

Go to advanced search