having alot of trouble with my class

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 --------
// --------------------------------


cout << "The end!!!\n";

return 0;
}

i have 10 more to do after this 1 by Thursday
Ummm....wow.

a.) We won't do your work for you
b.) This is actually pretty simple...http://www.cplusplus.com/doc/tutorial/operators.html
You should read this before asking people to explicitly just do the work for you. Very bold attempt though.

http://www.cplusplus.com/forum/beginner/1/
So what exactly is your problem with this?

and what are the other ones you have to do...
which thursday? 6th of nov?

greetz DG
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.
Change your include line to:
#include <iostream>

...and then everything will be correct so far. Good luck on getting 10 programs like this done by yesterday, though.
Topic archived. No new replies allowed.