/**************************************************************************/ /* Author: Chang */ /* Aim for: CS135 class */ /* Problem: This program illustrates simple data stream for I/O. */ /**************************************************************************/ //preprocessor directives # include using namespace std; int main() { int correct; // Get input cout << "Enter the number of correct dance steps you made: "; cin >> correct; // Print output cout << endl << "The number of correct dance steps you made is: " << correct << endl; system("PAUSE"); return 0; }