Hey could someone please tell me whats wrong with this?
#include <iostream>
using namespace std;
int main()
{
const int sunday =7;
const int monday =1;
const int tuesday=2;
const int wednesday =3;
const int thursday =4;
const int friday =5;
const int saturday =6;
int choice;
cout <<" enter a day (1-7)";
cin >> choice;
if {choice == sunday || choice == saturday}
cout << "\n Your ON WEEKENDS!!!\n"
else
cout <<"\n hahahah shame your at school!!\n";
return 0;
}
please help!!. and what is "int" by the way. I am a little confused