I'm trying to do this code for my school assignment and if you guys could help me that would be awesome. Code: #include "stdafx.h" #include <iostream> using namespace std; int main(array<System::String ^> ^args) { char one; char two; cout << "Does the computer beep on startup(Y/N)? " ; cin >> one; cout << "Does the hard drive spin (Y/N)? "; cin >> two; if ((one == "y") && (two == "n")) cout << "Check drive contacts"; else if ((one == "y") && (two == "y")) cout << "Contact tech support"; else if ((one == "n") && (two == "n")) cout << "Bring computer to repair centre"; else ((one == "n") && (two == "y")); cout << "Check the speaker connections"; cout << endl; system("Pause"); return 0; }