11.6 Week 8 Lab: Arrays
Boulder Weights Solve in C!
(1) Prompt the user to enter an integer for the number of boulders they have (assume the value is always less than 50). Then, prompt the user to enter that many numbers, representing the boulders’ weights. Store the weights in an array of doubles. Output the array's numbers on one line, each number followed by one space. (2 pts)
(2) Also output the total weight, by summing the array's elements. (1 pt)
(3) Also output the average weight. (1 pt)
(4) Also output the maximum weight array element. (2 pts)
Here is a sample mixed output/input (you will need to exactly match the format of the output):
How many boulders do you have?: 5
Enter weight 1: 236
Enter weight 2: 89.5
Enter weight 3: 142
Enter weight 4: 166.3
Enter weight 5: 93
You entered: 236.000000 89.500000 142.000000 166.300000 93.000000
Total weight: 726.800000
Average weight: 145.360000
Max weight: 236.000000
CODE
#include <stdio.h>
int main(void) {
int num;
printf("How many boulders do you have?: ");
scanf("%d", &num);
double arr[num];
for(int i=0; i<num; i++) {
printf("Enter weight %d: ", i+1);
scanf("%lf", &arr[i]);
}
printf("\nYou entered: ");
for(int i=0; i<num; i++) {
printf("%lf ", arr[i]);
}
double sum = arr[0];
double max = arr[0];
for(int i=1; i<num; i++) {
sum += arr[i];
if (arr[i] > max) {
max = arr[i];
}
}
double avg = sum / num;
printf("\nTotal weight: %lf", sum);
printf("\nAverage weight: %lf", avg);
printf("\nMaximum weight: %lf", max);
return 0;
}
11.6 Week 8 Lab: Arrays Boulder Weights Solve in C! (1) Prompt the user to enter...
14.5 Prog 5: People's weights (arrays) JAVA (1) Prompt the user to enter five numbers, being five people's weights. Store the numbers in an array of doubles. Output the array's numbers on one line, each number followed by one space. (2 pts) Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 142.0 Enter weight 4: 166.3 Enter weight 5: 93.0 You entered: 236.0 89.5 142.0 166.3 93.0 (2) Also output the total weight, by summing the array's...
5.23 LAB: Warm up: People's weights (1) Prompt the user to enter five numbers, being five people's weights. Store the numbers in an array of doubles. Output the array's numbers on one line, each number followed by one space. (2 pts) Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 142.0 Enter weight 4: 166.3 Enter weight 5: 93.0 You entered: 236.0 89.5 142.0 166.3 93.0 (2) Also output the total weight, by summing the array's elements....
Need a basic program in C using the instructions above.
Thanks.
(1) Prompt the user to enter five numbers, being five people's weights. Store the numbers in an array of doubles. Output the array's numbers on one line, each number followed by one space. (2 pts) Ex: Enter weight 1: 236 Enter weight 2: 89.5 Enter weight 3: 142 Enter weight 4: 166.3 Enter weight 5: 93 You entered 236.000000 89.500000 142.000000 166.300000 93.000000 (2) Also output the total weight,...
5.18 Ch 5 Warm up: People's weights (Vectors) (C++) (1) Prompt the user to enter five numbers, being five people's weights. Store the numbers in a vector of doubles. Output the vector's numbers on one line, each number followed by one space. (2 pts) Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 142.0 Enter weight 4: 166.3 Enter weight 5: 93.0 You entered: 236 89.5 142 166.3 93 (2) Also output the total weight, by summing...
ZYBOOKS LAB: 10.23.1 Hello, I'm trying to solve this problem with creating a program code in Python about People's Weights. Here is the question: 10.23 LAB: Warm up: People's weights (Lists) (1) Prompt the user to enter four numbers, each corresponding to a person's weight in pounds. Store all weights in a list. Output the list. (2 pts) Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3]...
Hello, can someone please help me correct this code? I greatly appreciate it. 7.16 Ch 7 Warm up: People's weights (Lists) (Python 3) (1) Prompt the user to enter four numbers, each corresponding to a person's weight in pounds. Store all weights in a list. Output the list. (2 pts) Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] (2) Output the average of the list's elements...
Hi,
I need some help with the following question. I need the answer
in Python please.
10.23 LAB: Warm up: People's weights (Lists) (1) Prompt the user to enter four numbers, each corresponding to a person's weight in pounds. Store all weights in a list. Output the list. (2 pts) Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] (2) Output the average of the list's elements...
1. print mesage to user to prompt user to enter 10 numbers 2 have program accept 10 numbers from user and populate 10 occurrances of an array (use a loop to do this). 3. print message to user to advise user contents of array follows 4. have program display array contents (use loop to do this) end program comment in java please
Write a Java program to prompt for inputting an integer N, then enter N integers (a loop is needed), print the numbers user entered, and the amount of even and odd numbers (zero is even number). (1) Prompt for the user to input an integer and output the integer. (1 pts) Enter an integer: You entered: 5 (2) Prompt for the user to input N integers, output the numbers entered and the amount of even and odd numbers (9 pts)...
Number of Numbers (10 pts) For this assignment you will be working with arrays. Open a new Java project called Nums Prompt a user to enter in the length of the array (the number of numbers). Enter the number of numbers: Use this information to declare an array of the user-specified length. Next, using a for loop, prompt the user to enter that many numbers, and store each one in your array until your array is at full capacity. Using...