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
~308 People Reached
Favorite Forums
Favorite Tags
java x 1
Member Avatar for myiwlu10

**HERE IS PART OF MY CODE THAT REALLY MATTERS! AND BELOW IS THE PRINT OUT I GET WITH THE Program ** B200-LOGC.** INITIALIZE WS-MISC, P1-DTL1-LINE.** MOVE EMPL-FRST-NAME TO WS-FRST-NAME. MOVE EMPL-LAST-NAME TO WS-LAST-NAME. MOVE WS-NAME TO P1-EMP-NAME MOVE EMPL-GROS-SLRY TO P1-EMP-SLRY. IF EMPL-GNDR = "M" MOVE "MALE" TO P1-EMP-GNDR ADD …

Member Avatar for BitBlt
0
177
Member Avatar for myiwlu10

import java.io.File; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Scanner; public class lotto { public static void main(String[] args) { String fileName = "lotto.txt"; final int arraySize = 45; int[] count = new int[arraySize]; File inputFile = new File(fileName); // Initialize the count array; for (int i = 0; i < arraySize; …

Member Avatar for stultuske
0
131