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
~229 People Reached
Favorite Forums
Favorite Tags
java x 2
Member Avatar for mrod123

[CODE]import java.util.*; import java.lang.*; import java.io.*; class wordOccur { public static void main(String[] a)throws Exception { int i; int[]f=new int[20]; System.out.println("Enter the Sequence of the String:"); Scanner s=new Scanner(System.in); for(i=0;i<f.length;i++) f[i]=0; String t=s.nextLine(); count(t); } static void count(String t) { int[] f=new int[14]; int i; String d=" "; String[] temp=t.split(d); …

Member Avatar for stultuske
0
229