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

4 Posted Topics

Member Avatar for Darren76

I have a project at my networking class, since i'm a beginner i don't have much knowledge about it. I appreciate your helpful tips... Assumptions: 1. The existing systems will need to be replaced. You will need to get 16 new systems. 2. No wiring exists within the company, so …

Member Avatar for royng
0
126
Member Avatar for Darren76

[LIST=1] [*]import java.util.Scanner; [*]public class retailPrice { [*]public static void main (String[]args) { [*]Scanner input = new Scanner(System.in); [*]double wholesale, markup, retail=0; [*]System.out.println("Enter the wholesale price! "); [*]wholesale = input.nextDouble(); [*] [*]System.out.println("Enter the markup percentage! "); [*]markup = input.nextDouble(); [*] [*]calculateRetail(wholesale, markup, retail); [*]System.out.printf("The retail price of the item is …

Member Avatar for Member #887084
0
161
Member Avatar for Darren76

/**This program is a simple number guessing game using the random class */ import java.util.Scanner; import java.util.Random; public class numGuessing { public static void main(String[] args) { Scanner input = new Scanner(System.in); Random rndm = new Random(); int num = rndm.nextInt(50); int numGuess; System.out.println("Please try to guess a number 1 …

Member Avatar for Darren76
0
242
Member Avatar for o0sample0o

Maybe this will help you......... [code] import java.util.Scanner; public class highestLowest { public static void main(String[]args) { Scanner input = new Scanner(System.in); int highestNum=0; int lowestNum =5000; int num, numTimes; System.out.println("How many numbers would you like to enter? "); numTimes = input.nextInt(); for (int c=1; c <= numTimes; c++) { …

Member Avatar for Eric Cute
0
1K

The End.