Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.67K
1 Posted Topic
Re: Need quikfix
cheak this [code] import java.io.* ; import java.util.*; public class life42 { public static void main (String args[]) { try { FileInputStream fstream = new FileInputStream("ex.txt") ; DataInputStream in =new DataInputStream (fstream); while (in.available() !=0) { String str=new String(in.readLine()); char[] c=str.toCharArray(); for ( int i = 0; i < c.length; …
The End.