Answered Essay: Background: Within a healthy, balanced diet, a grownup needs 2,250 calories a day. You will write a program to t

Background: Within a healthy, balanced diet, a grownup needs 2250 calories a day. You will write a program to track calorie intake of a person. Assignment: Calorie intake data from a person is provided in a text file named input.txt. There are arbitrary number of double values on each line, separated by spaces. The numbers on a day. The file includes data for exactly one week starting from Monday. That is, the file contains seven lines of text. The topmost line is for Monday and the li bottom is for Sunday. Your program should read the data from the file into a 2- dimensional array. The number of rows of the 2-dimensional array miust be equal to the number of valid lines in the file. The numbers in the i-th row of the 2-dimensional array must appear in the same sequence of numbers in the i-th row of the file. After reading the input file into the 2-dimensional array. report the following items. represent the number of calories consumed for meals and/or snacks ne at the - a list of total calories consumed each day a list of days when more calories than required are consumed average calories consumed during the i-th meal/snack (average over all seven days) You must write a method with exactly one 2-dimensional arra compute each of the listed items above and display the result. y parameter to Example input file: 800 1000 100 450 100 845 20 1200 200 1800 250 400 0 1500 800 120 600 500 700 1400 1700 100 675 You should print an error message and terminate if there are not exactly 7 lines Java

Background: Within a healthy, balanced diet, a grownup needs 2,250 calories a day. You will write a program to track calorie intake of a person. Assignment: Calorie intake data from a person is provided in a text file named input.txt. There are arbitrary number of double values on each line, separated by spaces. The numbers on a day. The file includes data for exactly one week starting from Monday. That is, the file contains seven lines of text. The topmost line is for Monday and the bottom is for Sunday. Your program should read the data from the file into a 2- dimensional array. The number of rows of the 2-dimensional array must be equal to the number of valid lines in the file. The numbers in the i-th row of the 2-dimensional array must appear in the same sequence of numbers in the i-th row of the file. After reading the input file into the 2-dimensional array. report the following items. a list of total calories consumed each day a list of days when more calories than required are consumed average calories consumed during the i-th meal/snack (average over all seven days) You must write a method with exactly one 2-dimensional array parameter to compute each of the listed items above and display the result. Example input file: 800 1000 100 450 100 845 20 1200 200 1800 250 400 0 1500 800 120 600 500 700 1400 1700 100 675 You should print an error message and terminate if there are not exactly 7 lines

Expert Answer

 

Calorie.java

import java.io.*;

public class Calorie {

public static void main(String[] args) throws Exception {

double week[][] = new double[7][];

BufferedReader br = new BufferedReader( new FileReader(“input.txt”));

int nod=0; //counter store no of lines/day reads

while(br.ready())

{

String line = br.readLine();

String[] cals = line.split(“\s+”); // split each line by spaces

int m = cals.length; // find the no. of entries in each line

week[nod] = new double[m]; // reinitialize row/day of week

int j =0; // j to maintain the calorie intake of that day

for(String x : cals)

{

week[nod][j] = Double.parseDouble(x) ;

j++;

}

nod++;

}

if(nod!=7)

{

System.out.println(“Input file should contain exactly 7 lines”);

}

// report total calorie for each day

double week_colorie[] = new double[7];

double total_caories =0.0;

System.out.println(” A list of total calories consumed”);

for(int i=0;i<nod;i++)

{

double day_calorie =0.0;

for(int j =0;j<week[i].length;j++)

{

day_calorie+=week[i][j];

}

week_colorie[i] = day_calorie;

total_caories +=day_calorie;

System.out.println(“Day “+(i+1)+”: “+day_calorie);

}

System.out.println(“List of day with more calories than 2250”);

for(int i=0;i<nod;i++)

{

if(week_colorie[i]>2250.0)

{

System.out.println(i+1);

}

}

System.out.println(“Average calories consumed : “+(total_caories/7));

br.close();

}

}

input.txt(keep this in same folder as Calorie.java)

800 1000 100
450 100 845 20 1200 200
1800 250 400
0 1500 800 120
600 500
700 1400 1700 100
675

OUTPUT

Buy Essay
Calculate your paper price
Pages (550 words)
Approximate price: -

Help Me Write My Essay - Reasons:

Best Online Essay Writing Service

We strive to give our customers the best online essay writing experience. We Make sure essays are submitted on time and all the instructions are followed.

Our Writers are Experienced and Professional

Our essay writing service is founded on professional writers who are on stand by to help you any time.

Free Revision Fo all Essays

Sometimes you may require our writers to add on a point to make your essay as customised as possible, we will give you unlimited times to do this. And we will do it for free.

Timely Essay(s)

We understand the frustrations that comes with late essays and our writers are extra careful to not violate this term. Our support team is always engauging our writers to help you have your essay ahead of time.

Customised Essays &100% Confidential

Our Online writing Service has zero torelance for plagiarised papers. We have plagiarism checking tool that generate plagiarism reports just to make sure you are satisfied.

24/7 Customer Support

Our agents are ready to help you around the clock. Please feel free to reach out and enquire about anything.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

HOW OUR ONLINE ESSAY WRITING SERVICE WORKS

Let us write that nagging essay.

STEP 1

Submit Your Essay/Homework Instructions

By clicking on the "PLACE ORDER" button, tell us your requires. Be precise for an accurate customised essay. You may also upload any reading materials where applicable.

STEP 2

Pick A & Writer

Our ordering form will provide you with a list of writers and their feedbacks. At step 2, its time select a writer. Our online agents are on stand by to help you just in case.

STEP 3

Editing (OUR PART)

At this stage, our editor will go through your essay and make sure your writer did meet all the instructions.

STEP 4

Receive your Paper

After Editing, your paper will be sent to you via email.

× How can I help you?