Posts
 
Reputation
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
~1K People Reached
Favorite Tags
java x 2
Member Avatar for Watti

Hi! I'm currently doing a career research. I am interested in why people decide to take up a field they are in and what drives them in the industry they work in. I am looking for people who have at least 10 years of working experience and hopefully are passionate …

0
36
Member Avatar for Watti

[code] import java.util.*; import java.io.*; public class testing { public static void main(String[]args) { int NoOfLines=0; int i=0; String fileName = "tingtings.txt"; String line; String[] lines = new String[1000]; try { BufferedReader brStream1 = new BufferedReader(new FileReader(fileName)); while ((line = brStream1.readLine())!= null) { NoOfLines++; } while ((line = brStream1.readLine())!= null) …

Member Avatar for AndreiDMS
0
1K