You have been given the following String which represents a series of 6 side die rolls:rolls = "1,5,2,3,5,4,4,3,1,1,1,2,3,1,5,6,
Anni [7]
Answer:
see explaination
Explanation:
rolls="1,5,2,3,5,4,4,3,1,1,1,2,3,1,5,6,2"
list1 = list(rolls.split(","))
print("The total # of rolls: {}".format(len(list1)))
j=0
for i in list1:
j+=int(i)
print("Total value of all rolls: {}".format(j))
print("Average roll: {}".format(j/len(list1)))
Please kindly check attachment for program code and output
You should use the Tools option and then click Anytime and then select custom range
Answer:
Here is the code for a classic C++ program that does it:
--------------------------------------------------------------------------------
#include <iostream>
using namespace std;
int main()
{
int sum = 0;
int n;
cout << "Input 10 numbers: " << endl;
for (int i = 0; i < 10; i++)
{
cin >> n;
sum += n;
}
cout << "Sum of the numbers: " << sum << endl;
}
--------------------------------------------------------------------------------
Explanation:
I'm assuming you know what "include", "using namespace std" and "int main()" do, so I will skip over those.
First, we declare a variable "sum" and initialize it with 0 so we can add numbers to it later.
Then, we declare a variable "n" that will be set as the input of the user.
The "for-loop" will iterate ( go ) from 0 to 9, and will set the value of "n" as the input that is given -> "cin >> n;". After that, we add the value of "n" to the sum variable.
After "i" reaches 9, it will exit the loop and proceed to printing the sum of the numbers.
Hope it helped!
Answer:
B Marketing assistants.
Explanation:
They truly are the imposter. Bite me.