True or False

The value of the expression 7 + 8 <= 15 is true.

I know these are very basic, but they are homework questions and i just started out and i am getting confused. Any help will be greatly appreciated!
Tell you what: Since your post doesn't contain a question to be answered, I'll just volunteer a tip: http://www.ideone.com. It is capable of running your C++ code snippets. Want to know if the above is true? Write a tiny program in there and see for yourself.

Here's a skeleton you can use:

1
2
3
4
5
6
7
8
9
#include <iostream>

using namespace std;

int main()
{
    //Here you put the code you want tested.
    return 0;
}
If you can't do basic math, why are you in a programming course?
You could just use a calculator. Almost every computer has one..
Topic archived. No new replies allowed.