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
~616 People Reached
Favorite Forums
Member Avatar for ezra.kim.98

import java.io.*; import java.net.*; import java.util.*; public class UselessHTTPServer04 { public static void main(String args[]) throws Exception { int port = Integer.parseInt(args[0]); ServerSocket serverSock=new ServerSocket(port); while(true) { Socket conn = serverSock.accept(); Scanner scanin = new Scanner(conn.getInputStream()); String line=null; int nlines=0; while (true) { line = scanin.nextLine(); if(line.length()==0) break; nlines = …

Member Avatar for ObSys
0
308
Member Avatar for ezra.kim.98

I need help with the following This is what I have so far, can someone just note down how they would go about writting the if statement Thanks. /**Returns the result of a card requesting to move through a door. * A move will be successful if: * the rating …

Member Avatar for deceptikon
0
117
Member Avatar for ezra.kim.98

How can I work out these questions?? Would really appreciate your help. things like looking for things in the Hashmap. • isRally - takes a String containing a rally code as a parameter and returns true if it represents a rally object stored in the allRallies collection, and false otherwise. …

Member Avatar for stultuske
0
191