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
~480 People Reached
Favorite Tags

2 Posted Topics

Member Avatar for sandyho

[CODE]import java.util.*; public class Homework1 { public static void main(String[] args) { double pages,total; Scanner input = new Scanner(System.in); System.out.println("Enter the number of pages"); pages = input.nextInt(); if (pages < 100) { total = (pages * .03) + 5; } else if ( (pages > 100) && (pages < 200) …

Member Avatar for mKorbel
0
355
Member Avatar for ffishy

hi all, I need some help w.r.t. arrays and it's representation. My assignment was to think of an idea(s) to redesign a 2-dimensional array that is a compressed form of binary patterns. e.g. {3,9,4,2} is compressed form and it's decompressed form is 111000000000111100. Then same for next few rows. I …

Member Avatar for griswolf
0
125

The End.