#include #include #include using namespace std; int main() { cout << "This program was designed by Heritage HS C++ A Team\n"; cout << "The Mini Sudoku Project!\n"; int n[8]; char s; cout << "Please enter a row of numbers with 9 digits\n"; cout << "(Please place a space between each digit)\n"; cin >> n[0] >> n[1] >> n[2] >> n[3] >> n[4] >> n[5] >> n[6] >> n[7] >> n[8]; system("PAUSE"); return 0; }