im taking a c++ online class and im really in trouble because i didn't get my book on time and now im behind and im also really stupid and cant do it so does anyone out there want to do my work for me?
instructions
Write a C++ program that reads in two numbers from the keyboard and then (1) adds them together and (2) multiplies the same numbers together. Write out the sum and product to the screen.
code
#include
using namespace std;
int main()
{
//
// Variable declarations
//
int num1, num2;
int sum, product;
//
// Read in two integers
//
cout << "Enter an integer: ";
cin >> num1;
cout << "Enter another integer: ";
// --------------------------------
// ----- ENTER YOUR CODE HERE -----
// --------------------------------
// --------------------------------
// --------- END USER CODE --------
// --------------------------------
What would you possibly gain by getting people to do it for you? You might as well not take the class! I'm sure people will be more than happy to help with more specific questions though.