subject

HURRY, HELP ME PLEASE In this lab, you complete a partially written C++ program that includes two functions that require a single parameter.
The program continuously prompts the user for an integer until the user enters 0. The program then passes the value to a function that computes the sum of all the whole numbers from 1 up to and including the entered number. Next, the program passes the value to another function that computes the product of all the whole numbers up to and including the entered number.

The given code is:
// SumAndProduct. cpp - This program computes sums and products
// Input: Interactive
// Output: Computed sum and product

#include
#include
void sums(int);
void products(int);
using namespace std;

int main()
{
double number;

cout << "Enter a positive integer or 0 to quit: ";
cin >> number;

while(number != 0)
{
// Call sums function here

// Call products function here

cout << "Enter a positive integer or 0 to quit: ";
cin >> number;
}
return 0;
} // End of main function

// Write sums function here

// Write products function here

WILL PICK BRAINLIEST for the fastest and most correct !!!

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 11:50
You have written, as part of a school assignment, a research paper on the solar system. you want to share this paper on your school website. on which type of server will you upload it?
Answers: 1
question
Computers and Technology, 23.06.2019 00:30
Knowing that the central portion of link bd has a uniform cross sectional area of 800 mm2 , determine the magnitude of the load p for which the normal stress in link bd is 50 mpa. (hint: link bd is a two-force member.) ans: p = 62.7 kn
Answers: 2
question
Computers and Technology, 23.06.2019 01:50
Create a class named majors that includes an enumeration for the six majors offered by a college as follows: acc, chem, cis, eng, his, phys. display the enumeration values for the user, then prompt the user to enter a major. display the college division in which the major falls. acc and cis are in the business division, chem and phys are in the science division, and eng and his are in the humanities division. save the file as majors.java.
Answers: 2
question
Computers and Technology, 23.06.2019 18:50
What is transmission control protocol/internet protocol (tcp/ip)? software that prevents direct communication between a sending and receiving computer and is used to monitor packets for security reasons a standard that specifies the format of data as well as the rules to be followed during transmission a simple network protocol that allows the transfer of files between two computers on the internet a standard internet protocol that provides the technical foundation for the public internet as well as for large numbers of private networks
Answers: 2
You know the right answer?
HURRY, HELP ME PLEASE In this lab, you complete a partially written C++ program that includes two...
Questions
question
Mathematics, 27.10.2020 16:30
Questions on the website: 13722359