I have looked at about 15 pages and corrections of this problem but just can't crack it. If someone could advise I would be eternally grateful!
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int exres = 100;
if (exres = 100)
{
cout << "Perfect Score!";
else
cout << "try again";
}
system("PAUSE");
return EXIT_SUCCESS;
}