Computer problems,Computer help
*AX SOFT>>>Programming & Design

AP Computer Science PLZ HELP!!! JAVA?


plz help me on this worksheet! thanks!

PART 1 : Show the output of each block of code below.
1. What is the output?
double[] decList = {9.0,8,7.5,10.5,3,4};
double total=0;
for(int spot=0; spot<decList.length; spot++){
total = total + decList[spot];
}
out.println(total);

2. What is the output?
int[] numList = {2,3,4,5,6,7,9,11,12,13,14,15,16};
int count=0;
for(int spot=0; spot<numList.length; spot++){
if(numList[spot] % 2 == 0)
count++;
}
out.println(count);

3. What is the output?
int[] nums = new int[6];
Scanner chop = new Scanner("1 2 7 8 9 11");

int spot=0;
while(chop.hasNextInt()){
nums[spot++] = chop.nextInt();
}

double sum=0;
for(spot=0; spot<nums.length; spot++){
sum = sum + nums[spot];
}
out.println(String.format("%8.2f",sum/...

PART 2 : Fill in the method below with the appropriate code.

//this method will return a count of how many 7s are in the array
public int equalToSeven(int[] array)
{

May be you can contact a JAVA expert live at website like http://askexpert.info/ to help you finish your project assignment.

Tags
  General - Computers & Internet   Software   Security   Programming & Design   Facebook   Flickr   Google   MSN   MySpace
Related information
  • Whats a favicon?

    These two articles tell you how to do it - ...

  • How do I insert a favicon in html?

    What you have to do is make the file an icon file. You can go here to convert an image to an icon file: ...

  • What should I use to put up a website? Yahoo, facebook, myspace, ect?

    i think you can use www.freewebs.com you can modify your website and it's for free..Gbu

    ...
  • C++ help please!?

    #include <iostream> using namespace std; int main() { int people = 1; int fee = 0; int totalpeople = 0; int totalfee = 0; while(people > 0) { cout << "Enter number o...

  • I have to write a C++ program...?

    This logic will compute the dollars, quarters, etc. You can add it to your programme. int pennies; int dollars; int quarters; int nickles; int dimes; dollars = pennies/100; pennies -= d...

  • I have vista, how do i get my desktop to be a slideshow?

    1.) RIGHT CLICK on your desktop 2.) Click on PERSONALIZE 3.) Click SCREEN SAVER 4.) Click on PHOTOS and choose which folder you would like to display as a slideshow [if you need to, make a separ...

  • Why isn't this website working?

    possibly its not reconizing the OS. i assume their is a PHP script here on this site that is checking for the operating system version and denying clients that dont have XP or VISTA. why? its a ...

  • How do I display more than one column from a php while loop calling one field?

    In this example a table is used: // here you can set the number of columns $numOfCols = 3; // this is a counter $numOfEntries = 0; echo "<table>"; while( ... ) { // f...

  •  

    Categories--Copyright/IP Policy--Contact Webmaster