No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
[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) …
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 …
The End.
ffishy