I am confused because i have to use two numbers between 1 and 100 that corresponds with a bunch of statements. For example the statements i have to use are "The first number is odd/even., the first number is/ is not divisible by the first number and etc."
Any help thanks!
So far i have:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <iostream>
usingnamespace std;
int main()
{
int firstnum;
int secondnum;
cout << "Please enter two integers in the range 1-100 inclusive." << endl;
cin >> firstnum;
cin >> secondnum;
cin.get();
return 0;
}