|
Invasive contributor
|
|
|
20Feb2011,00:13
|
|
|
|
Quote:
Originally Posted by angad_aks
Code:
import java.io.*;
class longwrd
{
public static void main(String args[])throws IOException
{
String s,str;
char b;
int c=0,i,l,p=0,max=0;;
InputStreamReader x=new InputStreamReader(System.in);
BufferedReader y=new BufferedReader(x);
System.out.println("ENTER A STRING");
s=y.readLine();
s=s.concat(" ");
l=s.length();
for(i=0;i<l;i++)
{
b=s.charAt(i);
if(b!=' ')
{
c=c+1;
}
else
{
if(c>max)
{
max=c;
p=i;
}
c=0;
}
}
str=s.substring(p-max,p);
System.out.println(str+" "+max);
}
}
- Comment your code...
- Document it..
- Make it more readable
|